3
votes
6answers
333 views
Good OS Delphi exception handling libraries?
Do you know any Open Source libraries for Delphi to serialize exceptions? I want to have a form “Exception has occurred”, so my users will be able to email error report to me. But …
1
vote
4answers
194 views
Delphi 2009 Upgrade Question…
Hi,
i bought yesterday an upgrade to Delphi 2009 Pro. Now i have the problem that i have a version of Delphi 5 Enterprise, but it's registered, but the account has been lost.
Is …
2
votes
3answers
112 views
Can Delphi 5 generate a .PDB file that VS can use?
We've got this large application written in Delphi 5, and development is ongoing to this day. There is research going on into migrating to newer versions, but so far there is no su …
0
votes
1answer
53 views
Delphi - TStoredProc.Close (does it empty the set?)
LEGACY ALERT - This is for Delphi 5 code. (I know it is super old. It is scheduled to be rewritten.... Some day.)
I am using the BDE and the TStoredProc object. When I call Clo …
1
vote
1answer
108 views
Error on setting TDateTimePicker.Font.Style to italic in Delphi 5
Is it possible to set TDateTimePicker’s font to italic? I am doing it in this code
var
DatEdit : TDateTimePicker;
begin
//I know Canvas is a stupid name for TPanel
DatEdit:= …
2
votes
3answers
437 views
Retrofitting Windows Event Log to a Delphi 5 app
I'm looking for a (fairly pain-free) means of adding some Windows Application Event-Log support to a small legacy Delphi 5 application. We just want it to log when it starts-up, sh …
2
votes
4answers
200 views
What should I do or don’t do to avoid Delphi “push dword” bug.
I found that Delphi 5 generates invalid assembly code in specific cases. I can't understand in what cases in general. The example below produces access violation since a very stran …
1
vote
1answer
123 views
Delphi 5 calling C++ dll causing Access Violation
Here is the Delphi code calling the C++ dll...
implementation
{$R *.DFM}
procedure CallMe(x: Integer); stdcall; external 'CppWrapper.dll';
procedure TForm1.Button1Click(Sender: …
3
votes
3answers
136 views
Create an exact copy of TPanel on Delphi5
I have a TPanel pnlMain, where several dynamic TPanels are created (and pnlMain is their Parent) according to user actions, data validations, etc. Every panel contains one colored …
0
votes
3answers
713 views
How to get selected cells from TDBGrid in Delphi 5
I have a DBGrid on a form and I have made multiple selections, I now need to send the selected cells (they are email addresses) to the "TO Box" of Outlook how can I do this, I will …
1
vote
1answer
77 views
Install D5 (& third party comps) on a machine with Delphi 2007?
I've got a Delphi 2007 VM which includes a reasonably up-to-date Report Builder and Dev Express Suite. I use it for a particular project for a particular client.
For that same cli …
2
votes
2answers
314 views
How to print TPanel contents?
I have TPanel. On this Panel there is an TImage descendant , few other panels with controls, etc. In fact, picture contains some diagram, while additional panels with labels are cr …
2
votes
1answer
393 views
Delphi CMExit message not sent when modal dialog is closed?
In one part of the application I'm working on, there is a form control that does validation on reception of the CMExit message, which is exactly how the Delphi documentation says t …
2
votes
2answers
170 views
Any gotchas moving TServerSocket app from D5 to D2007?
I've done a brief Google around and found nothing but I feel I ought to ask. I'm not really expecting there to be anything, but would rather ask a question with no answers now than …
1
vote
3answers
577 views
Delphi - Class TListView not found
We have a Delphi 5 application, that is built without runtime packages, dlls or external resources (i.e. a single executable). when we install it on a clients PC we get the followi …
