Questions tagged [delphi-2007]

Delphi 2007 is a specific version of Delphi. Delphi 2007 was released in March 2007, and was available as a standalone product or as part of RAD Studio 2007.

Delphi 2007 is a specific version of Delphi.

Delphi 2007 codename is Spacely.

Delphi 2007 was released in March 2007, and was available as a standalone product or as part of RAD Studio 2007.

Delphi 2007 was the last version that used the 8-bit AnsiString as the default string type.
Many components that do not support Unicode will work unchanged on Delphi 2007.

Delphi 2007 was preceded by Delphi 2006 and succeeded by Delphi 2009.

839 questions
0
votes
1 answer

Delphi save error

I am trying to save a unit in delphi 2007. But unfortunately i couldn't save it because it continously throwing me the error, which you can find below. Has somebody encounter the same?
kiran kumar
  • 153
  • 4
  • 12
0
votes
1 answer

How to include Vcl.ImgList in Delphi

In compiling a Delphi 2007 project, I receive the following error: E203: Undeclared identifier: TChangeLink This appears to belong to the Vcl > ImgList library. My limited understanding is that Vcl is part of the native Delphi libraries. How do I…
ljs.dev
  • 4,449
  • 3
  • 47
  • 80
0
votes
0 answers

TADODataset Field AsString performance

I have been experimenting with retrieving data from an MSSQL server from a Delphi program (using Delphi 2007). The program has so far been using TADODataset to retrieve data. During tests we found that TQuery with an ODBC provider fetched a large…
MGH
  • 1,189
  • 1
  • 10
  • 18
0
votes
1 answer

Delphi XE8 Console App code size

I have a little console app that I use in an installer to set registry settings and date stuff. Its only 80 lines of code, no units, all done in the main program file. It was originally compiled in D2007 and compiled exe size is 84kB. I am trying to…
Andy k
  • 1,056
  • 1
  • 11
  • 22
0
votes
2 answers

Replace string that contain #0?

I use this function to read file to string function LoadFile(const FileName: TFileName): string; begin with TFileStream.Create(FileName, fmOpenRead or fmShareDenyWrite) do begin try SetLength(Result, Size); …
Ina Ira
  • 247
  • 6
  • 14
0
votes
1 answer

How to avoid "the procedure entry point could not be located in the dynamic link library" message raised for SysUtils.LoadPackage function

I'm using SysUtils.LoadPackage function in order to load dynamic packages. Sometimes, it can happen that some packages are not synchronized and an error like this appears (Picture taken from internet): In those cases, I would like to manage the…
Fabrizio
  • 7,603
  • 6
  • 44
  • 104
0
votes
0 answers

DELPHI - insert an empty edit row at the end of a DBgrid

In Delphi 2007, I have a DBgrid who show data from a TDataSource. But at the end of this DBGrid I want to add an empty row to permit user insert new values. I tried to put the fonction Abort in the BeforeInsert procedure of my TUniTable. But I…
0
votes
4 answers

Delphi 2007 internal error

I got the following error in Delphi 2007. What does it mean? [DCC Error] uMyUnit.pas(9614): F2084 Internal Error: AV21B66E31-R0000000F-0 I did some recently added code removing, line insertions/deletions, changing compiler options, but nothing…
Max
  • 19,654
  • 13
  • 84
  • 122
0
votes
1 answer

Reading a tag name from an IXMLDOMDocument2 object in Delphi

I have something like this: uses MSXML2_TLB; type TDocumentType = (dtOrder, dtInvoice, dtStatus, dtError); // And a few more, actually function DetermineDocumentType(doc: IXMLDOMDocument2): TDocumentType; ... It must do something simple: determine…
Wim ten Brink
  • 25,901
  • 20
  • 83
  • 149
0
votes
0 answers

Code Gear RAD Studio Delphi 2007 can't find package error opening pas file

After renaming a folder that contains some bpls used by IDE, on start I got the following message related to packages contained in the renamed folder: "Can't load package packagefile.bpl. Do you want to attempt to load this package the next time…
Fabrizio
  • 7,603
  • 6
  • 44
  • 104
0
votes
1 answer

How to convert unicode strings to bytes array and vice versa on Delphi-2007

In Delphi XE7, we are converting some values from string to bytes and from bytes to string using: MyBytes := TEncoding.Unicode.GetBytes(MyString); and MyString := TEncoding.Unicode.GetString(MyBytes); I would like to write my own functions that…
Fabrizio
  • 7,603
  • 6
  • 44
  • 104
0
votes
2 answers

Why do I receive a different int then I've sent from using indy?

I've checked and when I convert the ints to hexadecimal they become 4C52 en 524C000000000000 respectively, so it looks as though the bytes are reversed. The client runs on Delphi XE7 for android and the server runs on Delphi 2007. How can I fix…
Friso
  • 2,328
  • 9
  • 36
  • 72
0
votes
1 answer

DELPHI Table cell split & merge

How can I make something like this in Delphi: I know I can make it from 3 tables so it would be easier, but how can I make Table cells split & merge and how to get the text to turn 90deg.? Is there some good content libraries that have split &…
Mr.Pengu
  • 107
  • 1
  • 2
  • 10
0
votes
1 answer

How to create a telnet connection in Delphi applications

I want to create a telnet connection in Delphi that will allow me to connect to the command prompt on my computer.
Monica
  • 71
  • 1
  • 3
0
votes
2 answers

How can I share an OnEnter event for a TcxGrid?

I want to standardize the behaviour on an Devexpress TcxGrid. So I have a unit ClientData with a event: procedure TClientData.grdOnEnter(Sender: TObject); begin mnuCxGridStandardMenu.Grid := TcxGrid(Sender); end; If I try to use that event from a…
Roland Bengtsson
  • 5,058
  • 9
  • 58
  • 99