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
0 answers

Getting Bluetooth incoming/outgoing serial ports in Delphi

I am looking for a way, programmatically, to first enumerate all Bluetooth serial ports a system has with friendly names and port number and then sort them by either incoming or outgoing ports. From what I have seen, Windows normally assigns the…
Evan Zimmerman
  • 333
  • 1
  • 4
  • 16
0
votes
1 answer

DELPHI 2007 & DATASNAP

I am trying to deploy a datasnap applicationon Windows 7 (Delphi 2007) but I cannot connect. I have register the datasnap server, I see the datasnap server on the client machine (host, server...) during the design-time but when I run the client I am…
VaVel
  • 69
  • 3
  • 13
0
votes
1 answer

Right clicking on TDBGRID delphi2007

When I right-click on a DBGrid it opens a popupmenu, but it also selects (hightlights) the cell I am currently over when right-clicking. Is there a way to not select(hightlight) the cell I am over when right-clicking and only have the popupmenu…
Joe
  • 2,675
  • 3
  • 21
  • 26
0
votes
1 answer

GMLib Could not complete the operation due to error 80020101

I get this error "Could not complete the operation due to error 80020101." at random times when displaying a map with a marker on it. I use Delphi 2007 and GMLib [1.2.0 Final]. I have read up on the issue and some suggestions was that the problem is…
0
votes
3 answers

Possible to reinstall Delphi 2007 without having to reinstall Delphi 2009 too?

I have Delphi 2007 and 2009 installed on the same computer. I notice from this question that all installations should be installed from oldest to newest. Does that mean that I'll have to uninstall D2009 and D2007, then reinstall both? Or can I…
croceldon
  • 4,511
  • 11
  • 57
  • 92
0
votes
1 answer

WriteComponentResFile is not including components dynamically added to TTabSheet

I am trying to convert a set of forms that were created with a custom tool to Delphi forms. I am trying to add all the necessary components at runtime and then use WriteComponentResFile to create the DFM file. All of my initial tests looked good…
Mark Elder
  • 3,987
  • 1
  • 31
  • 47
0
votes
1 answer

File not found xxxxx.dcu

I'm trying to locate which unit in my app uses a specific .dcu . As i don't know which unit is, i've renamed the dcu to generate an exception in compiler-time : [DCC Error] F1026 - File not found 'IdThread.dcu' Is there a way to locate in my project…
delphirules
  • 6,443
  • 17
  • 59
  • 108
0
votes
3 answers

D2007: Installed IDE Extensions - now one important component doesn't work

On my D2007 installation, I installed the DDevExtension, and also the IDEFixPack from the same site. Unfortunately, now I have a component, TmxSideBarPro, that won't load into the IDE anymore. Any time I try, I get the following error in the…
croceldon
  • 4,511
  • 11
  • 57
  • 92
0
votes
1 answer

Which is current correct indy and open ssl versions to use with delphi2007

I'm using indy components with D2007 and try to list subject of messages from a imap mailbox. I downloaded and installed current indy new version 10.6.0.5039 (installing x100 packages) and tried with various openssl dll versions (32bit on xp…
kit62
  • 161
  • 1
  • 3
  • 6
0
votes
1 answer

using TEdit and TUpDown with assosiation

I am creating an Delphi 2007 application, using Tnt components (Compenents with unicode). I have a form with: edit : TTntEdit; updown : TTntUpDown settings for thouse components are: edit.OnKeyPressed := edKeyPress; edit.OnKExit :=…
0
votes
1 answer

How to "flush" changes to a bitmap's ScanLine

I'm currently trying to add mirroring to our RotateBitmap routine (from http://www.efg2.com/Lab/ImageProcessing/RotateScanline.htm). This currently looks like this (BitMapRotated is a TBitmap) in pseudo-code: var RowRotatedQ: pRGBquadArray; //4…
Uli Gerhardt
  • 13,748
  • 1
  • 45
  • 83
0
votes
1 answer

Clear lines drawn with TCanvas

I am using TCanvas to draw a blue line whenever the left mouse button is clicked, and a red line whenever the right mouse button is clicked. Currently whenever I click another line is drawn on the chart. What I want to do is to clear the old line,…
TheEndIsNear
  • 395
  • 3
  • 17
0
votes
1 answer

How to export multiple TdxDBGrid into an Excel worksheet?

In our application we are having different grids in a form having individual Export to Excel functionality. DevExpress do not provide the functionality to Export multiple grids into an Excel worksheet. How this can be done in Delphi 2007? Thanks!
Abhishek
  • 174
  • 2
  • 9
0
votes
1 answer

How to use TImageList.DrawOverlay?

I use D2007 and TcxButton with a glyph image from Devexpress but it should be the same for any image. The button have 2 states and on the second state I want to draw an overlay over the original image. So in this case I have 1 Imagelist called Main.…
Roland Bengtsson
  • 5,058
  • 9
  • 58
  • 99
0
votes
2 answers

R link error too many resource to handle

I have a large project(single exe) having three thousand pas files and almost two thousand dfms. It also contains several resource strings and image lists. This project was working very fine and was enhancing this again and again for several modules…