1
vote
Getting BPL Versions at program start.
Unfortunately, no. If the crash is due to missing imports from the .bpl files required by your application, there is no way (short of rewriting the Delphi RTL and linker themselves) to check for th …
2
votes
Password encryption in Delphi
As others have pointed out, for authentication purposes you should avoid storing the passwords using reversible encryption, i.e. you should only store the password hash and check the hash of the us …
12
votes
Not Nil shortcut in Delphi
Like knight_killer pointed out above, you use the Assert() function, asserting that Assigned(obj) is true. Of course, like in most compiled languages, asserti …
0
votes
tStringList passing in C# to Delphi DLL
In theory, you could do something like this by using pointers (casting them as the C# IntPtr type) instead of strongly typed object references (or perhaps wrapping them in some other type …
9
votes
In Delphi 7, can I set up ‘Debug’ and ‘Release’ modes?
You can very easily add project configurations, similar to what other IDEs offer, using Andreas Hausladen's great DDevExtensions …
2
votes
Is there a FOSS batch compiling solution for Delphi that takes version as an input parameter?
You could, for example, specify the version information in a resource script (.rc file) whose compiled representation you link inside your project source (.dpr) using something akin to {$R myver.re …
2
votes
Is there a DBGrid component that can handle large datasets fast?
You might want to take a look at the wonderful (free, open source, dual licensed as MPL 1.1 and GPL thus usable in closed source apps) …
3
votes
Code documentation for delphi similar to javadoc or c# xml doc
As far as I'm aware, there is no tool easily compatible with Microsoft Sandcastle - at least until somebody actually bothers to write one, to modify an existing one, or to create a toolchain to pro …
10
votes
How to simulate bit-fields in Delphi records?
Rudy's Delphi Corner is the best resource I know of regarding Delphi and C/C++ interoperability. His …
5
votes
Unhandled exceptions in delphi
The simplest and quickest way would be to use the JCL exception and debugging support. After installing the JCL, make sure to insert the debug symbol …
0
votes
MD5 Hashing in Delphi 2009
Are you perchance casting a generic string (which in Delphi 2009 is a UnicodeString) to a PAnsiChar and passing that into the hash function? That will not work. You first must cast the string into …
2
votes
“Operation not supported” and “Printer selected is not valid” errors while printing
Not a solution but a tip for reducing the bug surface: Install (or have the user install) a virtual printer on that system and try to print to that one. A free (both as in beer, and as in freedom) …
0
votes
How do I find out the path of the file triggered by opening a file with a custom file extension?
Rob covered the answer to your question(s) beautifully.
As to the last part, whether there is a public list of file extensions - not as such, but there is shell.windows.com, the web service …
1
vote
Indy Write Buffering / Efficient TCP communication
I'm not familiar with Indy, but you might want to look around its API for a TCP_NODELAY option (you might want to grep the Indy source tree for something like that - case insensitive for "delay" sh …
2
votes
Delphi Pascal Problem when WMDeviceChange function calls other functions/procedures.
It's possible that the information you're querying becomes available only after the WMDeviceChange message handler runs. If the very same code works when called from a button, try this: …
