* Links:
* [[http://docwiki.embarcadero.com/RADStudio/en/XML_Documentation_Comments]]
* [[http://docwiki.embarcadero.com/RADStudio/en/ Fundamental_Syntactic_Elements_(Delphi)#Reserved_Words]]
* [[https://stackoverflow.com/questions/5786595/delphi-event-handling-how-to-create-own-event]]
* Tricks
* If you want to have the new line or line break within the string, you don’t write it on two lines, but concatenate the two elements with the sLineBreak system constant (which is platform specific), as in: 'Marco' + sLineBreak + 'Cantu'''
* Display form first before doing anything on the form in formactivate:
procedure tform.formactivate(sender:object);
begin
blah blah blah
form.update;
blah blah blah
end;
* [[delphinotes|Notes]]
* [[delphizeoslib|Zeoslib]]
* [[delphiasynccall|AsyncCall]]
* [[delphithread|Thread (Async)]]
* [[delphi7mousebug|Mouse Bug in Delphi 7]]
* [[delphidbgridondrawcolumncell|DBGrid OnDrawColumnCell]]
* [[delphitstringlist|TStringList]]
* [[delphipingunit|Ping Unit]]
* [[waitcursorvcltofmx|Wait Cursor VCL to FMX]]
* [[tryexcepterrortrapping|Try-Except Error Trapping]]
* [[mqttics|MQTT using ICS]]
* [[jsonmcjason|JSon using McJSon]]
* [[ondestroy|onDestroy]]
* [[sqlblobtofile|Save SQL Blob to a File]]
* [[icsconverthreadtofiberexerr|ICS ConvertThreadToFiberEx error]]
* [[checkparametersbeforecreateform|Check parameters before creating forms]]
* [[closeonshow|Close On Show]]