2
votes
How to keep track of the references to an object?
If you want to notify others of changes you should implement the "Observer Pattern". Delphi has already done that for you …
11
votes
Unit testing in Delphi - how are you doing it ?
DUnit is a xUnit type of unit testing framework to be used with win32 Delphi. Since Delphi 2005 DUnit is integrated to a certan point into …
1
vote
Multiple form Delphi applications and dialogs
Is the dialog shown using ShowModal or just Show? You should probably set the PopupMode property correct of the your dialog. pmAuto would probably your best choice. Also see if you need to set the …
3
votes
How to implement Type-safe COM enumerations in Delphi ?
What is wrong with native Delphi enums? They are type safe.
type
TMyEnum = (Item1, Item2, Item3);
if MyEnum <> Item1 then...
Since Delphi 2005 you can hav …
8
votes
Documenting Delphi
Since Delphi 2005 it is build in the Delphi compiler. It uses the XMLDoc standard which uses XML style comments. See http://dn.codegear …
4
votes
64bit Memory allocation
Only 64 bit processes can address 64 bit memory. A 64 bit process can only load 64 bit dlls and 32 bits processes can only load 32 bits dlls. Delphi's compiler can only make 32 bits binaries.
…
2
votes
What’s the best Delphi book for a newbie?
http://delphi.about.com/od/beginners/a/delphicourses.htm has some free tutorials and other info on Delphi. …
1
vote
How to implement Type-safe COM enumerations in Delphi ?
Now you have provided us with some more clues about the nature of your question, namely mentioning COM, I think I understand what you mean. COM can marshal only a subset of the types Delphi knows b …
1
vote
How to implement Type-safe COM enumerations in Delphi ?
I think I know why Borland choose not to use type safe enums in the TLB editor. Enums in COM can be different values while Delphi only since Delphi 6 (I think) can do that.
type
…
3
votes
Visual Studio equivalent to Delphi bookmarks
DPack can give you numbered bookmarks in VisualStudio.
…
8
votes
Learning Delphi
The "Mastering Delphi" books are still very useful in the latest win32 Delphi versions. The same author also has a Delphi 2007 for win32 book. You can't find it on Amazon since he publishes it hims …
4
votes
How to disable a warning in Delphi about “return value … might be undefined”?
Are you sure you have done everything to solve the warning? Maybe you could post the code for us to look at?
You can turn off the warning locally this way:
{$WARN NO_RETVAL …
0
votes
How to save jpg image to database and then load it in Delphi using FIBplus and TImage?
This page explains it. Use SaveToStream and a TMemoryStream instead of SaveToFile if you don't want temporary files. …
10
votes
What’s wrong with Delphi’s “with”
One annoyance with using with is that the debugger can't handle it. So it makes debugging more difficult.
A bigger problem is that it is less easy to read the code. Especially if the with s …
1
vote
Using DLR from Unmanaged Code
Yes. That is possible using Com Callable Wrappers. Basically you are enabling your .Net classes to be called throu …
