Top "Delphi-2009" questions

Delphi 2009 is a reference to a specific version of Delphi.

pass unlimited number of parameters to procedure

in Delphi the procedure write can handle: write(TF,st1) and write(TF,st1,st2,st3,st4); I want to …

delphi parameters delphi-2009
Is there, or is there ever going to be, a conditional operator in Delphi?

I kept my hands off Delphi for too long, I guess; busied myself with Java and PHP a lot over …

delphi delphi-2009 language-features conditional-operator
Why is DoubleBuffered disabled by default?

After creating a new form, I usually perform this ritual: Change the name into something meaningful; Type a Caption; Change …

delphi delphi-2009 doublebuffered
How to use external fonts?

Is it possible to use a font directly from resources in Delphi and how? I have a problem with the …

delphi fonts resources delphi-2009
How do I upload a file using http post? Delphi 2009

My goal is to upload a text file via HTTP post I am using Delphi 2009. Say for example to the …

delphi file-upload http-post delphi-2009 indy
How to create a file shortcut (*.lnk file) on desktop in Windows?

function GetDesktopFolder: string; var buf: array[0..MAX_PATH] of Char; pidList: PItemIDList; begin Result := StrNoDesktopFolderFo; SHGetSpecialFolderLocation(Application.Handle, CSIDL_DESKTOP, …

delphi delphi-2009
Recognizing text from a picture in delphi

i need an advice on how to approach this problem. I have some picture data: *.jpg, *.bmp ... and i need …

delphi ocr delphi-2009 image-recognition text-recognition
What components and IDE add-ins do you install with Delphi?

After a clean install of Delphi, what components and IDE add-ins do you make certain that you install? What's your …

delphi delphi-2009 delphi-2010
Where do I define symbols tested with {$IFDEF}?

When I use Delphi directives in code, like: {$IFDEF something} . . . {$ENDIF} Where do I assign the word 'something' in the …

delphi delphi-2009 compiler-directives
Why is CharInSet faster than Case statement?

I'm perplexed. At CodeRage today, Marco Cantu said that CharInSet was slow and I should try a Case statement instead. …

delphi delphi-2009 case-statement