Questions tagged [delphi-3]

Delphi 3 is a specific version of Delphi. It was released in August 1997. Use this for issues related to development in Delphi, version 3.

Delphi 3 is a specific version of Delphi. It was released in August 1997.

Delphi 3 codename is Ivory.

Delphi 3 was preceded by Delphi 2 and succeeded by Delphi 4.

8 questions
5
votes
1 answer

What's the equivalent in Delphi 3 of Supports for Interfaces?

I support an application written in Delphi 3 and I would like to put in some improvements to the source code while waiting for the opportunity to upgrade it to a newer version of Delphi. One of the things I would like to use is Interfaces. I know…
Omen
  • 88
  • 1
  • 4
4
votes
2 answers

Delphi TStringList Free Causes Exception

Consider this short Delphi procedure: procedure TfrmXQuery.FieldListFillFromDefault; var field_list: TStringList; begin try if x <> '' then begin field_list := TStringList.Create; {do some stuff with field_list} end; …
Jonathan Elkins
  • 455
  • 5
  • 21
4
votes
4 answers

Proper Catastrophic Error Handling

There's something I keep running into that I really haven't solved with Delphi programs and was wondering if anyone could instruct me on it. As the topic says, how do you do proper catastrophic error handling? For instance: // is file necessary…
Glenn1234
  • 2,542
  • 1
  • 16
  • 21
3
votes
1 answer

Why has the Cardinal type in my application changed?

I have a program here which was working fine in Delphi 3 that I compiled and tested on Turbo Delphi 2006 and found a problem. The problem is this: I was using "cardinal" data types as an index for something. It worked in Delphi 3, but I found…
Glenn1234
  • 2,542
  • 1
  • 16
  • 21
2
votes
2 answers

Reproduce UInt64 in Delphi 3

I am trying to "redefine" the UInt64 type for the Delphi 3 compiler. The reason for that is that I do not use system.pas nor sysinit.pas. So I only have native var types like Integer, Cardinal etc. How could I reproduce the UInt64?
Ben
  • 3,380
  • 2
  • 44
  • 98
1
vote
5 answers

Delphi 3 to SQL 2008

One my clients has a system written in Delphi 3 and the database is Paradox. My job is to convert it to use SQL Server 2008. How can I make it connect to SQL 2008? This is pretty old stuff, I know. I appreciate the help. Thanks
Gus Cavalcanti
  • 10,527
  • 23
  • 71
  • 104
0
votes
3 answers

Deploying Custom Units and Components

When it has come to redoing or reinstalling Delphi, I've run into a hassle. When it comes to components and units I've produced to use in projects, I run into having to go through the entire backup of my projects to find all the things I've used in…
Glenn1234
  • 2,542
  • 1
  • 16
  • 21
-1
votes
1 answer

Form using HTTP POST and GET in Delphi

I use an HTTP component in Borland Delphi 3.0 (old version Delphi). No Indy TIdHTTP component available yet. Just using HTTP components. I use POST and GET to process a form of registration for my program application (Radio Calculator v3.50). My…
adhitronic
  • 11
  • 4