Questions tagged [delphi-7]

Delphi 7, released in August 2002, is a version of Delphi for Windows 32 bit.

Delphi 7 (codename: Aurora) is a specific version of Delphi. Always use the tag alongside this tag.

It was released in August 2002, became the standard version used by more Delphi developers than any other single version. It is one of the most successful IDEs created by Borland because of its stability, speed and low hardware requirements, and remained in active use as of 2011. Delphi 7 added support for Windows XP Themes, and added more support for building Web applications. It was the last version of Delphi which could be used without mandatory software activation.

Its release immediately preceded a period of turbulence in the history of Borland/CodeGear/Embarcadero that, combined with Delphi 7's robustness, contributed to its widespread use and longevity. In this regard, Delphi 7 can be considered the counterpart to MSVC6.

Delphi 7 introduced full support for XP themes, probably the most significant enhancement over Delphi 6.

Delphi 7 was preceded by Delphi 6 and succeeded by Delphi 8 (Codename: Octane).

Editions

Borland Delphi 7 Studio was released in four different editions:

  • Architect
  • Enterprise
  • Professional
  • Personal

References

3088 questions
1
vote
0 answers

Can my TControl be notified when its parent form is shown (DoShow)

How can my TControl descendant get notified when its Parent Form in Showing i.e. the Parent Form DoShow method is called? Is there a message being broadcast to the children (and children or children) when that occurs? In my specific case, it is a…
zig
  • 4,524
  • 1
  • 24
  • 68
1
vote
2 answers

Create a Simple Delphi IDE Expert

I want to create a simple IDE Expert for Delphi 7, like in the following image: I've verified the links gave for this question but OTA Api newsgroup is dead, and most of the documentation is unavailable (broken links). Can someone give a starting…
RBA
  • 12,337
  • 16
  • 79
  • 126
1
vote
1 answer

Multithreaded Delphi 7 App - a problem with app termination

I have a descendent of TThread and a list of objects, each with its own copy of such thread and yet the Event object, created with CreateEvent() API. Different objects interact with each other by event firing. I.e. each thread must wait until some…
1
vote
3 answers

Default property for class in delphi 7

I'd like to ask on how to set default property in a delphi 7 class? So it can be accesed by just writing >> class := '..'; << that's if the default property set to text. so we dont have to write class.text := '..';
eta
  • 27
  • 1
  • 3
1
vote
0 answers

Convert Chinese words to English using Delphi 7

I'm having a hard time converting Chinese words to English automatically. Where did I go wrong? If I convert Filipino words to English everything is OK, but not with Chinese words. It will still result a string but not readable chinese…
Ago
  • 755
  • 7
  • 28
1
vote
1 answer

Connecting to local server via dBExpress

My D7 dBExpress project is supposed to connect to a local Interbase XE7 server. It has the usual DBX setup: SqlConnection, SqlQuery, DataSetProvider and ClientDataSet and does a simple 'select * from mytable'. Last time I used it, it was working…
Alex James
  • 696
  • 5
  • 13
1
vote
1 answer

Read and save part of file stream via IdHTTP and IdSSLIOHandlerSocketOpenSSL1

I want to download a part of a file from a HTTPS server. I have used an Idhttp and an IdSSLIOHandlerSocketOpenSSL-component. Using the TIdHTTP.Response.AcceptRanges property does not seem to work: it downloads the entire file. If I use…
Petermch
  • 191
  • 15
1
vote
1 answer

How to choose Delphi ADO Cursor location and Cursor Type

we have migrated a Delphi Project(Banking Application) from BDE to ADO and we have kept all the default properties as is and while unit testing there are issues. One issue is "Row cannot be located for updating. Some values may have been changed…
DelphiLearner
  • 489
  • 6
  • 25
1
vote
2 answers

Unit ExtActns was compiled with a different version of UrlMin.IBindStatusCallBack?

I am getting this message now : "Unit ExtActns was compiled with a different version of UrlMin.IBindStatusCallBack" when i try to compile two old projects of mine in Delphi 7 on a new machine: I have checked and double checked that the library paths…
IElite
  • 1,818
  • 9
  • 39
  • 64
1
vote
1 answer

Delphi Adoquery SQL add or text

I'm trying to update my database in Delphi, but I'm not getting it right. What I want is simple. This is my code: form1.ADOQuery1.SQL.Clear; form1.ADOQuery1.SQL.Add('Update Table1 set mark=' +Form1.Edit4.Text); form1.ADOQuery1.ExecSQL; So…
Javerdonz
  • 13
  • 1
  • 3
1
vote
2 answers

Encrypt/Decrypt a MS Access 2000 (*.mdb) Database File (Extra Security)

For Extra Security, i would like to Encrypt/Decrypt a MS Access 2000 (*.mdb) Database File. I am using Delphi 7 and I am looking for a free or opensource solution (possible just two functions that allow you to pass a file name and a key). I would…
IElite
  • 1,818
  • 9
  • 39
  • 64
1
vote
1 answer

Rave Reports Excel File Render Object?

I notice that Rave reports for Delphi 7 (default version) comes with PDF, HTML, RTF, and TXT Render Objects. Does anyone know of a place to download a free or opensource render object for Excel, or other file types? (I am particularly interested…
IElite
  • 1,818
  • 9
  • 39
  • 64
1
vote
2 answers

How to set text dfm value to checked on all dfm files/Count number of lines in .dfm binary file

with below example i am counting number of lines in .dfm file and the count is coming wrong because .dfm is saved in binary format. if i open .dfm file and do right click and set text dfm to checked and the count is coming correctly. Below is the…
DelphiLearner
  • 489
  • 6
  • 25
1
vote
2 answers

ISAPI WebService on Apache

I have WebService (ISAPI DLL) with client in Delphi 7. When I call my WebService with my client, everything works fine. Problem is with client in .NET from another company. If as server runnig apache (with isapi-handler), web service does not run.…
Pavel
  • 195
  • 1
  • 11
1
vote
2 answers

Make TMemo show partially visible lines

Is it possible to make TMemo show partially visible lines? I'm looking for a native way to do that, without custom rendering. I made an example screenshot for those who not familiar with this issue: As you can see,, in the area I marked with red,…
Markus_13
  • 328
  • 2
  • 14
1 2 3
99
100