0
votes
A Delphi/FreePascal lib or function that emulates the PHP’s function parse_url
If you're using wininet.dll you can also use their InternetCrackUrl API.
…
3
votes
1
vote
I can’t include a version number in this old Delphi project I inherited. How do I fix it?
It seems the resource directive {$R *.RES} is missing (or enclosed in conditional defines) in your .dpr file so that the IDE doesn't find it.
…
2
votes
Is there an easy way, to Port a Win32 App in Delphi 2009 to .NET ?
Delphi 2009 targets Win32 only.
For .NET you could use …
0
votes
Are delphi variables initialized with a value by default?
Global variables and object instance data (fields) are always initialized to zero.
Local variables in procedures and methods are not initialized in Win32 Delphi; their content is undefined until yo …
6
votes
Password encryption in Delphi
For typical authentication purposes, you don't need to store the passwords, you only need to check if the password entered by the user is correct. If that's your case then you can just store a hash …
0
votes
Are delphi variables initialized with a value by default?
From Delphi 2007 help file:
ms-help://borland.bds5/devcommon/variables_xml.html
"If you don't explicitly initialize a global variable, the compiler initializes it to …
0
votes
Launching a registered mime helper application
I'm not sure about this but perhaps this may lead you in the right direction: try using URL cache functions from the wininet DLL: …
2
votes
Is there a performance difference between inc(i) and i := i + 1 in Delphi?
You can verify it in the CPU window while debugging. The generated CPU instructions are the same for both cases.
I agree Inc(I); looks better although this may be subjective. …
1
vote
Delphi Pop Up menu visibilty
This seems to be a bit simpler (I used Delphi 2007):
In your WM_CONTEXTMENU message handler, before calling the inherited handler, the popup menu is about to be shown, you can set your flag …
0
votes
Can Delphi 2009 be installed on the same machine as Delphi 2006 or Delphi 2007?
I have Delphi 2007 and I have installed 2009 yesterday with no visible problems so far. Both seem to work fine.
…
1
vote
Delphi OTA and RTTI bug
Did you try using GetOrdProp, SetOrdProp instead of GetInt64Prop, SetInt64Prop?
…
3
votes
Unicode Console Application in Delphi 2009
Writeln in Delphi 2009 still uses ANSI (see System TTextRec) but you can use UTF8Encode and change the console's output code page to UTF8 by calling SetConsoleOutputCP(CP_UTF8). You will also need …
1
vote
In Delphi 7, how do I escape a percent sign (%) in the Format function?
Obligatory:
http://xkcd.com/327/
:-)
Depending on context, your approach might be vulnerable to SQL injection. If the search term comes fro …
4
votes
DoubleBuffered property beeing added in the dfm in Delphi 2009 does not exist in Delphi 2007
DoubleBuffered has been in TWinControl for some time now. The difference in Delphi 2009 is that it's published now.
If you can live with only ignoring the errors (and not making the properties work …
