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.
5
votes
2answers
97 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
193 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
139 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
134 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
119 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
130 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
127 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
430 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
135 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
141 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
240 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
217 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
141 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
214 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 ...
3
votes
0answers
181 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
111 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
197 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
360 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
128 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 ...
3
votes
3answers
896 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
471 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
449 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
256 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
112 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
173 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
176 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
241 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
156 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
656 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
453 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
263 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
127 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?
2
votes
1answer
356 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
623 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
94 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
744 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
531 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
222 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
214 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
220 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
184 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
777 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 ...
0
votes
2answers
293 views
Porting a Delphi 2006 app to XE
I am wanting to port several large apps from Delphi 2006 to XE. The reasons are not so much to do with Unicode, but to take advantage of (hopefully) better IDE stability, native PNG support, more ...
4
votes
2answers
200 views
MIDIYOKE in Delphi 2006
I am working with application in delphi. I need to use MIDIYOKE to send output from my application to another application. The second application is Virtual piano keyboard.
I installed all the ...
1
vote
1answer
183 views
delphi 2006, SynTaskDialog compilation error in custom component
i am working on component for delphi 7 and delphi 2006, the component uses SynTaskDialog.pas from synopse, i have successfully used the SynTaskDialog.pas in delphi 7 component, but when i try to use ...
4
votes
4answers
588 views
Delphi 7, Add a dll to application directory on dropping a component
i am developing a a component in delphi 7 and delphi 2006,component uses a .pas (Not mine )file which requires a DLL file to be present in the application directory.
It is possible to embed the DLL ...
5
votes
1answer
413 views
Delphi - Comparing two pathnames when one is UNC and one is drive letter-specified
I have a situation where a user can specify two separate pathnames, and I need to check whether one pathname is "inside" the other one. I can do this if both pathnames are UNC, or both are ...
1
vote
2answers
205 views
What could suddenly cause my Delphi 2006 IDE to behave erratically when debugging?
I have Delphi 2006. Suddenly it has started behaving erratically. If I run to a breakpoint, it stops, but the next time I start it, the program runs but ignores breakpoints. If I reset the ...
0
votes
2answers
148 views
Delphi 2006 - routine parameter untyped
It is possible to have a parameter in a routine which can be in the same time either an type, either an string? I know I can accomplish this by overloading a routine, I ask if it possible to do it in ...

