Delphi 2006 is a specific version of Delphi. It was released in late 2005. Use this tag for issues related to development in Delphi 2006.

learn more… | top users | synonyms

2
votes
1answer
66 views

Are there any extensions to TADOQuery that include client indexes

Quick question (hopefully) I have a large dataset (>100,000 records) that I would like to use as a lookup to determine existence or non-existence of multiple keys. The purpose of this is to find FK ...
5
votes
1answer
98 views

How to recurse down paths over 255 characters and read file attributes?

Delphi : how to recurse down paths over 255 characters and read file attributes I am writing a console app and need to traverse a directory structure with paths much greater than 255 characters and ...
0
votes
1answer
57 views

RegisterMethodInfo and RegisterParamInfo from Delphi XE synonyms in Delphi 2006

my problem is the following. I have a web service that i have to call, but it contains complex types that Delphi 2006 does not recognize. I tried to import the wsdl through delphi xe and it did a good ...
0
votes
0answers
59 views

how can I get a comment on the first line of an NativeXML file?

Is it possible to add a comment to the first line of a NativeXML file when generating it? I.e. instead of: <?xml version="1.0" encoding="utf-8"?> we want to have: <?xml version="1.0" ...
-3
votes
1answer
150 views

Why doesn't the new compiler recognize “NULL” in this old code?

I just downloaded the ADSI and it seems to be that it is not compatible with Delphi Embarcadero XE4. When I try to compile one of the examples, I get this error: [dcc32 Error] adshlp.pas(128): E2003 ...
1
vote
1answer
114 views

Delphi - Iterating through an XML dataset with NativeXML

I'm trying to migrate some xml code from the default delphi XML routines to NativeXML, hopefully to improve the speed (a lot). The XML files are of the form: <Datafile> <Header> ...
0
votes
1answer
105 views

Draw a geometric shape

I am trying to draw/display a geometric shape on a Delphi form given a list lines and arcs at a specific X and Y (Cartesian). Example: -Line X0Y0 to X10Y0 -Line X10Y0 to X10Y10 -Line X10Y10 to ...
7
votes
2answers
149 views

Creating Accessible UI components in Delphi

I am trying to retrieve accessible information from a standard VCL TEdit control. The get_accName() and Get_accDescription() methods return empty strings, but get_accValue() returns the text value ...
1
vote
3answers
204 views

why does Delphi decide to recompile certain files needlessly

When I build my projects, I expect to see all the units recompile in the compilation progress. When I "make" the project, I expect only those units where the source has changes to be recompiled. ...
1
vote
1answer
175 views

There is no overloaded version of 'ShellExecute' Delphi

I am beginner of Delphi now I would like to learn this language but I have got error and I don`t know where is problem and how to fix it. This example I take it from book to delphi. Error [Pascal ...
0
votes
2answers
150 views

How to read or write huge Unicode files?

I need to read huge Unicode files into my program and convert to ANSI for parsing and for some files, store them again as Univode while others should be in ANSI code page. As I have understood it, ...
-2
votes
1answer
140 views

Creating NonContinuable exception in delphi

I have an exception which its raise command causes stack overflow. I read this article in order to know what should I do: http://www.debuggingexperts.com/modeling-exception-handling What I understood ...
1
vote
1answer
149 views

How to debug DCU in Borland Delphi 2006?

I use Borland Delphi 2006 (folder name: C:\Program files\borland\BDS\4.0), and I want to enable debug DCUs. Where can I find this option? in tools->options->debugger options it doesn't exist. Note: I ...
2
votes
2answers
136 views

How to set a record field as 'Procedure of object' before an object exists so that it can run

Very un-snappy title I know. I have a series of text lines that I need to perform certain operations on in a certain order. I have come up with a means of doing this by defining the following record ...
1
vote
2answers
613 views

How to handle UTF-8 and ANSI conversion before Delphi 2009?

In Delphi 2009 we have: RichEdit1.Lines.LoadFromFile(OpenDialog1.FileName,TEncoding.UTF8); RichEdit1.Lines.SaveToFile(OpenDialog2.FileName,TEncoding.Unicode); How do I do that on Delphi 2006 if ...
8
votes
2answers
164 views

How can I override ClearType setting when drawing text using the Win32 API?

I have written a little application that draws text on in-memory images and writes them to files. The basic Delphi code looks similar to: var Canvas : tCanvas; Text : WideString; TextRect : ...
0
votes
2answers
148 views

TADODataSet.MasterFields - Performance

I have a Delphi application which has 2 TADODataSet objects that reference CLIENT (Master) and ORDER (detail) data. I have the 2 components linked via the DataSource and Masterfields (using ...
3
votes
4answers
274 views

How to crop a field Length in SQL so it does not consume all the space of a DBGrid?

Let's say I have this table: name varchar(255), quantity integer, value float When I used this code: select left(name, 99), quantity, value from table; But I've got all the 255 ...
3
votes
4answers
239 views

Proper Catastrophic Error Handling

There's something I keep running into that I really haven't solved with Delphi programs and was wondering if anyone could instruct me on it. As the topic says, how do you do proper catastrophic error ...
1
vote
1answer
151 views

Why has the Cardinal type in my application changed?

I have a program here which was working fine in Delphi 3 that I compiled and tested on Turbo Delphi 2006 and found a problem. The problem is this: I was using "cardinal" data types as an index for ...
2
votes
1answer
268 views

How to monitor the keyboard above all other applications and then send other keys to them instead

I am building an multimedia console based on an old computer running Win7. I want to control the players with a numeric keyboard. I can't use the common media control devices because they respond ...
4
votes
0answers
191 views

Report Builder (Digital Metaphors) add empty rows in details band until the end of page

I am using ReportBuilder 10 in Delphi 2006 with an Access 2000 database. I am trying to create a report using a filtered query. Telerik Report : Starch line in Detail band or Add Empty rows Repeat a ...
3
votes
1answer
117 views

Delphi - Implementation of “sepia” routine for an arbitrary color

I've seen the odd routine for converting an image to a sepia-tone version, like this one: function bmptosepia(const bmp: TBitmap; depth: Integer): Boolean; var color,color2:longint; r,g,b,rr,gg:byte; ...
0
votes
1answer
222 views

Pass PANSIChar parameter from Delphi 2006 app to XE2 app

I have an application that's compiled using Delphi 2006, and I want to launch an another application compiled in XE2 and pass it a parameter. I am using ShellExecute to launch the 2nd app from D2006, ...
1
vote
1answer
367 views

How to fix owner draw anomaly in DBGrid?

Continuing with the project started in: How to auto fit DBGrid (or other similar) columns with its contents? I used the @alzaimar answer to auto fit the columns according to their content width, but ...
4
votes
2answers
143 views

How to calculate the “Left” Property to center a Text in a DBGrid Cell?

Continuing with the project started in: How to auto fit DBGrid (or other similar) columns with its contents? How to calculate the "Left" Property to center a Text in a DBGrid Cell? When we call ...
4
votes
3answers
1k views

How to auto fit/scale DBGrid's (or other similar) columns widths according to its contents?

I am trying to make a frame with a DBGrid that will serve for more than 10 tables with half of its fields as defaults, and other fields exclusive for each table. As the space for the columns are ...
2
votes
2answers
644 views

How can I fix the TScrollBar MouseWheel malfunction?

I have a TScrollBox inside of a TFrame and when I use my mouse's wheel it simply does not goes up nor down the ScrollBox scrolling. I have tried to use TScrollBox(Sender).Perform(WM_VSCROLL,1,0); ...
0
votes
1answer
478 views

ClientDataSet only partially transferring data from TADOQuery

I have two databases and I need to ensure that all records in one database have a matching record in the other. I will call these DB-SQL and DB-Legacy This would be easy enough if both had an SQL ...
3
votes
2answers
286 views

How to Fix the TComboBox Ctl3D Property Bug?

This is an image from a TForm where I have a TEdit at top and a TComboBox at down. As you can see, the TEdit does not have the classic 3D border of the Windows controls default theme. That's ...
0
votes
1answer
129 views

Is there a Plugin for Better Filtering the Delphi 2006 Component Palette items?

I have hundreds of components in my Delphi 2006 installation, but I always have trouble finding those I haven't used before and that may be the solution for what I need at the moment. I have many ...
2
votes
1answer
178 views

How can I detect Applications Focus Changes?

I know how to get the title and exe name of the foreground window application that is running now, but I use a TTimer to verify when it changes. Is there a way to detect events triggered by Alt+Tab, ...
2
votes
1answer
185 views

Compressing a PDF after the fact with Delphi

I have apps that use routines for producing PDF's that use a thing called PDF-in-the-box. The PDF's are not compressed, and there appears to be no way of achieving that with this component. Rave ...
1
vote
2answers
253 views

TopenDialog/TSaveDialog with owner-drawn items

I want to implement the traditional open and save dialogs (and the underlying items being dealt with are files), but I want to have control over what is displayed in place of the filename, and include ...
0
votes
1answer
161 views

How to send keyboard virtual button pressing to a TDBLookupComboBox or similar?

I have to convert many Excell files (converted to CSV) to the database layout of my application. In my table there are some fields that uses foreign keys for other tables lists and when my convert ...
3
votes
1answer
1k views

How to Convert Simple RichText to HTML tags in Delphi?

You may say that there are lots of discussions about this in stackOverflow, but most of them are more complicated than what I need and mostly for other languages. I have a MySQL remote database in ...
1
vote
2answers
740 views

How to pass c# string to delphi .dll PChar type?

So I learned using IntPtr in this case, -delphi (delphi 2006 version) code function GetRequestResult(out code:integer):PChar; stdcall; begin LogMessage('GetRequestResult'); ...
1
vote
1answer
487 views

How to pass string from C# to delphi dll function?

so I want to use .dll file's function made from delphi. Here is delphi's code, procedure Login(login,password:PChar); stdcall; var LoginPacket:tLoginPacket; s:IP_bigstr; q,w:integer; ...
1
vote
0answers
266 views

How to really animate a GIF image using Thread? [closed]

I have a component that makes Delphi 2006 capable of display GIF and animated GIF. I analyzed the code and found that it uses threads to display it. But what happens when I put a "loading" animation ...
5
votes
1answer
143 views

delphi 2006 - Is it possible to find out if a resource name exists?

What it the best way to find out if a resource name exists - other than seeing if LoadFromResourceName (HInstance, 'FOOBAR') causes an exception?
3
votes
1answer
399 views

How to Set a Value to a Sub-Property Item using TypInfo RTTI Methods?

In my Question: How to use “Sender” parameter with “As” operator for more then one class at a time I choose the Remy Lebeau's Answer because it was the most dynamic tech for most situations like ...
6
votes
1answer
658 views

How to make TFrame with rounded corners?

I want to make a component based on a TFrame with TLMDShapeControl (for drawing round corner background) and a TEdit control (that can be also a TComboBox or a TDBEdit and so on). After that I will ...
0
votes
2answers
97 views

Delphi - Want an automated way of maintaining the link between a “source” image file and images in my project

One thing I find Delphi doesn't manage well is the link between image "source" files and the image components in my project (D2006 here but I'm assuming it applies to all versions). Say I have ...
1
vote
2answers
785 views

How to make a TScrollBox with Transparent Background?

I have a TFrame with a TImage as background. This frame serves as ancestor for other frames that I put on a limited space in the main TForm. So it is just a user interface base for the other frames. ...
2
votes
2answers
544 views

How to put configuration information inside the executable?

If we want to store critical information, like passwords and server addresses, inside the executable file generated by the Delphi compiler, how can we do that, without knowing the final executable ...
2
votes
3answers
244 views

How to get the name of a variable or object node passed by parameter in a delphi function?

In Java we have something like VarName.toString to indetify the name of the var. I have a code in Delphi and I need to achieve the same thing, because I have a record type that has many sub-strings ...
0
votes
2answers
222 views

New TFrame and TDataModule crashing Delphi IDE

Here is the problem I've met: Working in BDS 2006 IDE, my older computer gone, new ( i7 mount ) has been built and it has Windows 7 Ult OS 64bit, where 2006 was installed and QuickReports Pro as well ...
2
votes
1answer
224 views

How to insert code to a class without modify the original class?

I have created a routine to make the corners of Delphi visual controls to be rounded. Now what I want to do is ensure that every visual object like TMemo, TEdit and TPanel comes rounded without ...
2
votes
2answers
188 views

Inheriting a method from the ancestor's ancestor

I am working on a component that is derived from a commercial component suite, and have run into a challenge, which I've never considered before. Consider the following code snippet: TMyClass = class ...
5
votes
4answers
851 views

Migrating from Delphi 2006 to Delphi XE2

There is a code base in delphi 2006 with no development for last many years. If the development needs to be activated what are the options. Continue developing in 2006. (Not sure of IDE support ...

1 2 3 4