1
vote
How to disable a warning in Delphi about “return value … might be undefined”?
I am not sure that I want to see the code for this unit... after all, the error occurs at line 6939 ... Maybe some internal compiler table have been exceeded?
…
3
votes
What is needed to get Delphi back on top?
Let's see what the Embarcadero era will bring. It is no secret that the Inprise/Borland period was a period of missing focus when it came to the Delphi/C++Builder tools.
Having used Turbo …
0
votes
Changing CURRENT save/default directory in Delphi 2007 without using Save-As
Do NOT use a path relative to .exe path. That will get you into trouble with Windows XP in limited access mode, as well as with Windows Vista.
Do you need one database for all users?
Use …
1
vote
Rendering SVG and Delphi
Adobe's own SVG Viewer (http://www.adobe.com/svg/viewer/install/) is COM based and can be used in Delphi by wrapping it with th …
0
votes
Documenting Delphi
Another option would be Pascal Browser (PAB) from http://www.peganza.com/#PAB
The Pascal Analyzer from Peganza is also worth a look. …
3
votes
Class/Static Constants in Delphi
TMyObject = class
private
class var FLogger : TLogLogger;
procedure SetLogger(value:TLogLogger);
property Logger : TLogLogger read FLogger write SetLogger;
end;
…
4
votes
Exception handling in Delphi
Any exception not explicitly or generally handled at a specific level will trickle upwards in the call stack. The Delphi RTL (Run Time Library) will generate a set of different exception classes - …
3
votes
Delphi Component Serialization
The built-in RTTI based system for serializing published properties is vulnerable to changes in the components. Going forwards is manageable as long as old properties are kept in new objects. I.e …
4
votes
Using DLR from Unmanaged Code
Yes. Delphi for Win32 example here: http://interop.managed-vcl.com/
Shows how to use a C# as well as a Delphi.NET assembly from D …
1
vote
Delphi Out of resources
Most likely a corrupted project.res file. Try renaming the old and see if it is successfully recreated?
…
1
vote
What’s the Best Logging Package for Delphi?
Duplicate of
http://stackoverflow.com/questions/72983/which-logging-library-is-better
Also partial …
2
votes
What is the best or cheapest library for creating PDF files in Delphi?
Gnostice have some very neat native VCL components (eDocEngine, …
0
votes
Precision of reals through writeln/readln in Delphi
Depending on how much processing you need to do, an alternative could be to keep the numbers in BCD format to retain original accuracy.
…
1
vote
ActiveX events between apartments
Are you accessing objects that were created in the same thread as the event handler or were the COM object created in the main thread? If you are not in the same thread context in the eventhandler …
0
votes
Why Weren’t You at CodeRage III?
Time constraints. Just too much to do atm.
Will want to pick and choose from the recordings, though.
…
