Questions tagged [delphi-2006]

Delphi 2006 is a specific version of Delphi. Use this tag for issues related specifically to development in Delphi 2006.

Delphi 2006 is a specific version of Delphi. It was released in December 2005.

Delphi 2006 codename is DeXter.

Delphi 2006 was preceded by Delphi 2005 and succeeded by Delphi 2007. As of August 2009 it was no longer officially supported by Embarcadero.

262 questions
0
votes
1 answer

Send Hex like 0x1b 0x31 to com port in delphi

I need to send Hex data like a command to my serial port using Delphi. The Hex data like "0x1b 0x31". What the procedure can I used ? writestring() or writebuffer() ? How to use them ?
hytham
  • 53
  • 1
  • 6
0
votes
1 answer

How to copy Delphi IDE configuration to other machine?

I need to use Delphi 20006 and XE7 on my home computer, my work computer and my notebook, but I have so many components installed that keeping everything equal on those 3 devices is too difficult. I decided to use VMBox but it makes things very slow…
NaN
  • 8,596
  • 20
  • 79
  • 153
0
votes
1 answer

FAST REPORT VCL data band

Normally in fast report, the data band lines up rows vertically . Now i want to design a report in which i should use a data band line up horizontally Is there any way or techniques with this?
chaco
  • 3
  • 4
0
votes
0 answers

error access violation at address 6172676F in delphi 2006

I am working with external DLL file in Delphi 2006 when I used on of the function to get serial number from my reader the function work good but after that i got an error "access violation at address 6172676F" the code : const NLS_DOF =…
hytham
  • 53
  • 1
  • 6
0
votes
0 answers

delphi 2006 indy https post time out

I have to use Delphi 2006. I have to use Indy 10.1.5 - comes with Delphi 2006 or not, but I have to use these versions! I found an example how to use indy SSL https get but now I completely lost my head and close to to do another 'bad day' video!…
Kefealo
  • 21
  • 3
0
votes
2 answers

Problem when compiling "vcl forms application" in turbo delphi for .net

I have Turbo delphi for .net, and every time that I try to compile a vcl forms application I receive a send/close error message. It has nothing to do with with the applications, because they compile fine in other machines. The error message accuses…
Victor
  • 1,655
  • 9
  • 26
  • 38
0
votes
1 answer

Get version number of compact framework exe from Delphi PC application

I have an application compiled for Compact Framework which I need to find the version number for using Delphi 2006. I am using the code below. function VersionNumber(ExeFile: string): string; var Size: Longint; Dummy: Cardinal; Buffer:…
energ1ser
  • 2,703
  • 4
  • 24
  • 31
0
votes
1 answer

Why Delphi Help does not come with examples anymore?

When I worked with Delphi 5 I always pressed F1 on a method I did not knew how to use. The Help system explained what it is, what is does and gave an example on how to use it in a simple code. After that I installed Delphi 2006 and bammm! No more…
NaN
  • 8,596
  • 20
  • 79
  • 153
0
votes
3 answers

Background Worker Delphi

I would like to prepare asynchronous process for procedure in Delphi Borland 2006 do you know how? application.ProcessMessages; dm001.Proc.Close; dm001.Proc.Parameters.Clear; dm001.Proc.ProcedureName:='[dbo].[EXAMPLE]'; …
Rafał Developer
  • 2,135
  • 9
  • 40
  • 72
0
votes
2 answers

Delphi .PAS code reverts to the previous code after compile/build

I have a .BPG project which has a collection of .DPR project files. Opened a .PAS file I changed some line of code in a .PAS file of an project. Saved it After changing the source code, I tried COMPILE on that project. First it says "Compiled"…
0
votes
1 answer

Delphi 2006 Application messing up the GUI on Windows 7

I've been searching the Internet for a solution. Also here on Stackoverflow. But I haven't had any luck so far. We're having a problem with a Delphi 2006 application running on Windows 7. Some ComboBoxes are not shown. The exactly same application…
0
votes
1 answer

How to send parameter to my device using libcam.dll in delphi

I have a code in Delphi I using the it to get picture from my 2D Reader, I am using 'camlib.dll' to set parameter of the Image in the device the code: unit Test_Cam; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics,…
hytham
  • 53
  • 1
  • 6
0
votes
1 answer

how set color of otherslice

In tchart I can set colors for all values of my piechart series except for the automatic generated otherslice. There is an "otherslice" property for the series but it has no color property. I tried setting all color properties available like…
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
0
votes
2 answers

Focus an IntraWeb IWTreeView on a selected item

I have a rather lengthy tree view (IWTreeView) in a IWRegion (ClipRegion:= True) with one node selected. How do I focus that node such that it is visible for the user after a render? The What I do so far: In Delphi tree.Selected:=…
Ralph M. Rickenbach
  • 12,893
  • 5
  • 29
  • 49