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

Performance slowdown after porting Delphi 7 application to Delphi 2007

I recently ported a legacy Delphi 7 app to Delphi 2007. My users have been complaining that portions of the application are significantly slower in the new version. I did upgrade to newer versions of Developer Express components in the port, but…
user1498879
  • 59
  • 1
  • 4
0
votes
1 answer

Use custom font in Devexpress columns headerhint

I use D2007 and Devexpress QuantumGrid v2011 2.3. I want to assign the columns headerhint in code like this. colGoodsMasks.HeaderHint := Format('%s %-30s %-30s%s' + '%s %-30s %-30s%s' + '%s %-30s %-30s%s' + '%s %-30s %-30s%s' + '%s %-30s %-30s%s'…
Roland Bengtsson
  • 5,058
  • 9
  • 58
  • 99
0
votes
2 answers

How can I get the Open XML DOM parser to parse an ntEntityRef node?

I have this XML input: <N/A> Here is a short code sample to illustrate the problem: uses xmldom, oxmldom, XMLDoc, XMLIntf; procedure TForm1.Test; var Document : IXMLDocument; …
Jens Mühlenhoff
  • 14,565
  • 6
  • 56
  • 113
0
votes
0 answers

Change the Position of the Modal form at runtime

There is a modal form in my Delphi 2007 application. I already have applied MinHeight,MaxHeight, MinWidth and MaxWidth constraints on the form. If the screen resolution is below the Min/Max constraints, I want to re-size and re-position the form…
A J Qarshi
  • 2,772
  • 6
  • 37
  • 53
0
votes
1 answer

Linepen, linebrush and stairs in Teechart

I am trying to use linepen, linebrush and stairs but I get a red wavy line under them in Delphi 2007. I guess i forgot to add a unit. Which unit should I include. I am trying to duplicate the popupline code from the teeoffice demo. Thanks. P
-1
votes
2 answers

Image list usage

I store the icons for my applications inside several image lists. Have one to: X16 X24 X48 X32 Both TActions and direct access to place ICOs in a TButton, or TImage came from this several Image Lists. My problem is that when I need to remove one its…
Jlouro
  • 4,515
  • 9
  • 60
  • 91
-1
votes
1 answer

One JSON with multiple queries

So guys updating my problem: I have a Delphi 2007 function that "ImportStudentMisses": procedure TWeb.ImportStudentMisses; var SLMisses, SLClasses: TStringList; i: Integer; idClass, idStudent: integer; begin SLMisses := TStringlist.Create; …
-1
votes
1 answer

Delphi generic control possible?

So I have a delphi combobox that looks like this (Rad Studio 2007 .net)... TEnumComboBox = class(TComboBox) the idea is that it can take any enum type and populate itself from there. Struggling to actually get the form that it's used in to…
flobadob
  • 2,804
  • 2
  • 22
  • 23
-1
votes
1 answer

TOraDataSet blocking my program even with NonBlocking set to true

i was trying to do a little splashscreen so my program could open querys withaout blocking my aplication. The code i wrote is this. procedure TOpenThread.OpenTable; begin FActiveTable.NonBlocking := true; FActiveTable.open; end; procedure…
-1
votes
1 answer

Using TJclZipCompressArchive blocks the main VCL thread in Delphi

I'm using TJclZipCompressArchive from the Jedi JCL with the 7zip.dll to add multiple files to a ZIP archive like this: arch := TJclZipCompressArchive.Create(_ZipFn); arch.OnProgress := HandleOnProgress; for i := 0 to Files.Count - 1 do begin fn :=…
dummzeuch
  • 10,975
  • 4
  • 51
  • 158
-1
votes
1 answer

Delphi 2007 - ManualFloat causes widget controls to float above all other windows

we have some Widget controls in a Delphi 2007 application. The widgets inherit from TWinControl. On the widget we call the TControl method ManualFloat to undock the widget. The issue is that when MainFormOnTaskBar is true calling ManualFloat…
There is no spoon
  • 1,775
  • 2
  • 22
  • 53
-1
votes
1 answer

Curious issue in Delphi using Stream reader

So I have a binary file and I am reading a word value which is 2 bytes the value is an Int16 = 43140, however whenever I read it in Delphi it returns as 43104, I wrote the code to read it in C# just to test and it reads correctly it is only in…
kyndigs
  • 3,074
  • 1
  • 18
  • 22
-1
votes
1 answer

Not able to compile a package in delphi 2007

I am working on a project which uses tms components. I have installed it and gave its source path in project options -> search path. But when i am trying to compile and run the program. I am getting the following errors. I tried to remove…
delsql
  • 601
  • 2
  • 7
  • 15
-1
votes
2 answers

Delphi 2007 can't start anymore - root element is missing

Delphi 2007 can't start anymore. I 've tried re-installed many times but still not working.
justyy
  • 5,831
  • 4
  • 40
  • 73
-1
votes
1 answer

Testing Somesite CRLF Bugs Hole Using Indy IdMappedPortTCP

I want to create a small tool like CRLF Injection or HTTP header respons splitting. I was successful created thousands NetData pattern (data payload) lists. The NetData pattern like this example: GET http://somebug.com/ HTTP/1.1[CRLF]Host :…
1 2 3
55
56