1
vote
Convert console exe to dll in C
You can execute a console application and capture its output using pipes. You use une side of the pipe as stdout for the CreateProcess and you read from the other side like a common file.
Y …
3
votes
Is there an easy way, to Port a Win32 App in Delphi 2009 to .NET ?
Remember that D2009 is a win32 version, and not .net. I suppose you want to make a two steps path, first move to D2009 and then to .net ?
Luckily, delphi is a very stable platform and it is …
13
votes
Are delphi variables initialized with a value by default?
Yes, this is the documented behaviour:
Object fields are always initialized to 0, 0.0, '', False, nil or whatever applies.
Global variables are always initialized. …
2
votes
Password encryption in Delphi
I think Turbopower LockBox is an excellent library for criptography:
http://sourceforge.net/projects/tplockbox/
…
1
vote
In Delphi 7, can I set up ‘Debug’ and ‘Release’ modes?
This feature was added only in Delphi 2009.
For older versions of Delphi you can write two copies of .cfg file, one with debug options and one with release options, and compile your program …
2
votes
Delphi versus C++ Builder - Which is Better Choice for a Java Programmer Doing Win32
Of course java sintax is more like c++ than like delphi, but I think that the object model is more similar to delphi:
single inheritance. Interfaces exist but are more like COM than l …
