Posts by Jonathan Cani • 23 points
5 posts
-
0
votes4
answers115
viewsA: Algorithm execution error in pascal
I think that’s what you need: Program Crianca_Esperanca ; var D: integer; valor: real; begin writeln('--------------------------------'); writeln(' CRIANÇA ESPERANÇA ');…
pascalanswered Jonathan Cani 23 -
0
votes2
answers521
viewsA: Convert from String to Integer in Pascal
The Sysutils library has the converter as mentioned above, and also something I recommend that you check the need to use Strtointdef, following the example above, can be used as follows: var A :…
-
0
votes1
answer58
viewsQ: How to find all places where depreciated methods are being used in Netbeans?
Are there any tools in Netbeans that allow you to generate a file, report, log, or something like that to find all methods that are deprecated in a Class or Project? I tried to find on the Internet,…
-
0
votes1
answer593
viewsQ: Field as parameter in Generic Update - ORACLE
Currently I have a precedent that reads an XML, and updates the table fields personal based on the values sent by XML, such as CPF, RG, Name, etc. Today I read the XML values and insert in the table…
-
2
votes2
answers126
viewsA: Error opening form - Delphi
This error occurs because you probably do not have the component/library installed, if you do not have it, you should check the ignore all option, so that Delphi does not automatically remove the…