Delphi 2009 is a reference to a specific version of Delphi. Delphi 2009 was released in August 2008, and is available as a stand alone product, or as part of RAD Studio 2009.
0
votes
0answers
61 views
TSpeedButton stop sending the click event [closed]
I'm working in a huge Delphi project, and I have a problem: one of the TSpeedButtons stop working between compilations.
If I delete the button and the event handler and I create it again, it works ...
1
vote
0answers
75 views
How can I set Ctrl+R as shortcut for the “Rename” refactoring in Delphi?
In Delphi 2009, I tried to use GExperts to configure the shortcut Ctrl+R (easy to remember) for the rename refactoring. I have not changed any keybinding before so everything is in the IDE default ...
0
votes
0answers
121 views
Reading ini file onCreate event causes 8 second delay
I have some complex software, and i whittled the delay in it to this piece of code:
procedure Tform1.FormCreate(Sender: TObject);
begin
inherited;
with TIniFile.Create(Path + '\FileName.INI') do
...
0
votes
3answers
176 views
Is there a generic “Object Pool” implementation for Delphi?
I came across this while looking for a database connection pool implementation for Delphi.
An object pool needs two methods:
get - to acquire an object from the pool (this will create a new ...
1
vote
1answer
132 views
how to define classes inside classes in delphi?
I am in the progress of trying to learn a few new tricks in order to better organize some of the sourcecode in my units in Delphi.
I have noticed that some functions or methods I access appear to be ...
-4
votes
1answer
160 views
How to dynamically make multiple Labels, Edits and etc. in Delphi? [closed]
I want users to create their own list of controls such as TEdit, TCheckBox, TLabel, and other things. But how can I make another, when I have to predefine every control, but I don't know how many ...
0
votes
0answers
120 views
SQL QUERY in delphi
please i need help... when i run this code in Delphi 2009, IBQuery components...
give me a error:
Unknown table mon$database
but if i run this command in SQL Manager lite for Interbase and ...
5
votes
2answers
144 views
Why does GetLastError return 0 when it's called in a DLL library?
Assume I'm having a DLL library with this pseudo-code:
var
LastError: DWORD;
procedure DoSomethingWrong; stdcall;
var
FileStream: TFileStream;
begin
try
FileStream := ...
0
votes
1answer
87 views
how to debug an event that is not fired even if its assigend
I'm looking for the code that checks if the event is assigned, and if so, fires it.
What code manage the events?
Suggestions?
I have a custom component, that is connected to AdoQuery, that hold ...
2
votes
1answer
111 views
Is there ContainsStr equivalent for unicode strings?
Today I was fixing up some warnings in our code and one of them is "W1058 Implicit string cast with potential data loss from 'string' to 'AnsiString'" in ContainsStr function.
After searching for a ...
0
votes
0answers
87 views
Delphi InPlaceEdit with grids
looking for more information about "InPlaceEdit" to place a date picker in a grid cell.
i did find this, however it has bugs , and is very messy for duplication across many forms.
And I'm looking ...
1
vote
2answers
451 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 ...
4
votes
0answers
258 views
Clipboard operations in Delphi
Local workstation: Win 7
Terminal Server: Win 2008 Server
Outlook: 2003 running on local workstation.
I'm trying to implement copying and pasting of Outlook messages from local workstation to ...
7
votes
2answers
182 views
delphi dbgrid boolean value, accept f fa fal fals false , how to accept more values?
I'm using mssql and Delphi 2009.
When a form contains a dbgrid that is connected to boolean field, the values are displayed as True, or False.
The Delphi dbgrid has the ability to translate
f
fa
fal
...
7
votes
1answer
251 views
Checking if the file is in use and by which application?
Trying to use the below mentioned approach to get more details about the locked file.
Is file in use
function GetFileInUseInfo(const FileName : WideString) : IFileIsInUse;
var
ROT : ...
0
votes
1answer
112 views
How to ensure that a file is correctly written to file system?
I hava an application that reads a file from a ZIP archive and saves it to file on file system. After writing it to file system I start start immediately to read this file with a SAX2 reader. On ...
0
votes
0answers
74 views
how to declare warning, error and fatalError function for DIxml?
I am using DIxml to parse a couple of XML files. So far it worked great. Yesterday I got an XML file which seems to be correct, but cannot be parsed by DIxml. I do not yet have warning, error and ...
1
vote
1answer
118 views
how to get stacktrace or at least errorneous row in delphi?
I am suffering from Delphi 2009 :)
I have to find some bugs in a very old, grown software written in Delphi. When I launch the application in the Debugger, I just get an Error Msg saying: "Access ...
1
vote
1answer
216 views
Delphi - TScrollBox issue after X number of components
I noticed in one of my test applications after I have added so many TPanels to a TScrollBox I run into a problem with the ones drawn past that certain amount. I disable the scroll box prior to drawing ...
0
votes
2answers
94 views
Transfer Delphi 2009 projects to another PC [duplicate]
Possible Duplicate:
How to migrate Delphi or clone Delphi registry settings?
I am starting to learn Delphi 2009. I have been given access to an old Tech's PC (Windows XP) where he has ...
16
votes
4answers
282 views
Strange results with currency value / constant value comparision
When compiled with Delphi 2009 and run, this console application writes "strange".
The values on both sides of the "less than" operator are equal, but the code behaves as if they are not equal. What ...
-1
votes
1answer
25 views
Use the value of a variable from a procedure in another one [closed]
can I get the value of a variable declared in a procedure then use it in an if condition in another one , and how please ?
0
votes
1answer
174 views
Debugging COM+ in Delphi 2009 : the dllhost.exe /ProcessID does not work
I am writing a COM+ component in Delphi 2009 on Windows 8. (I will move on to XE3 soon but for now it's D2009).
I have had quite a few IDE freezes when debugging regular simple forms applicaitions, ...
2
votes
2answers
126 views
Why does the compiler complain “incompatible types” for my generic function parameter?
I am having problems with generics. I do not know how to pass OnCallbackWrapper to the CallbackWrapper procedure. I am getting 'incompatible types' error on the following example:
unit uTest;
...
0
votes
0answers
161 views
How to capture button press from all HID devices?
I am interested in capturing a button press (or button down/button up) from any available HID device, for assigning a function for that specific button/key, just like most games allow you to assign a ...
1
vote
2answers
453 views
log4d vs log4delphi [closed]
does anyone know what is the difference between log4d vs log4delphi? could you recommend one of them that you used and satisfied with ? or claim they are the same? or do you use other "logger" that ...
5
votes
1answer
166 views
after a stream was passed to CommandGet, when can it be freed?
with indy TIdHTTPServer, on the even of OnCommandGet, there is a possiblity to pass to AResponseInfo.ContentStream a stream with the data.
which is fine.
when can i release that stream?
assuming the ...
3
votes
2answers
348 views
TIdTCPClient: Reconnect implementation
I am writing an application, which uses TIdTCPClient to communicated with another application via a socket.
I want the application to try to connect to a certain server until the connection is ...
1
vote
2answers
589 views
How to convert UTF-8 string to PChar in Delphi 2009
I receive a string, which is displayed as '{'#0'S'#0'a'#0'm'#0'p'#0'l'#0'e'#0'-'#0'M'#0'e'#0's'#0's'#0'a'#0'g'#0'e'#0'}'#0 in the debugger.
I need to print it out in the debug output ...
1
vote
2answers
531 views
TIdTCPServer.OnExecute in a console application
I need to write a Delphi 2009 application, which reads data from a socket. To do this, I need to write an event handler for the TIdTCPServer.OnExecute event.
I found lots of examples for implementing ...
3
votes
2answers
116 views
How can I capture variables by anonymous method when using it in OTL?
What I want to do:
I have a few objects in a genric list. I want to capture each of this object in anonymous method and execute this method as a separate OTL Task.
This is a simplified example:
...
1
vote
0answers
479 views
Named pipe performance
I have an application, where I send approx. 125 data items via a named pipe.
Each data item consists of data block 1 with max. 300 characters and data block 2 with max. 600 characters.
This gives 125 ...
1
vote
1answer
122 views
Handle of TComponent instance
I have an instance of TComponent class and need to interact with the respective control via WinAPI calls.
In order to do this, I need a handle of the control represented by TComponent instance.
How ...
0
votes
1answer
152 views
Delphi2009, IBX and firebird with utf8 give a division by zero error
I'm using Delphi 2009 with firebird 2.5 and with IBXpres I'm getting the "Division by zero" error.
The firebird's DB is created with charset UTF8 and collation UNICODE_CI.
I already modified the ...
0
votes
1answer
407 views
Sending text over a named pipe crashes Delphi application
I have a Delphi application, which sends piece of text to a named pipe via call
SendMessageToNamedPipe(hPipe, CurMsg);
It works fine for some messages, but sending other texts leads to a crash of ...
3
votes
1answer
447 views
Delphi - Exception in ntdll.dll on closing after both connection to Oracle and calling a web service method
In Delphi 2009 I'm finding that any time I do perform both a connection to Oracle (via OCI.dll) and a call to a web service method I get an exception in ntdll.dll when closing my application in the ...
1
vote
0answers
391 views
How to create a Delphi project in a Visual Studio 2012 solution? [closed]
I have a heterogeneous (C#, C++) application with TFS as a versioning system.
I need to put my Delphi code under version control. For this purpose I need to create a project in Visual Studio 2012,
...
6
votes
1answer
331 views
How to get a tree view item by the hit test when RTL layout is used?
Description:
Having a tree view in right-to-left reading mode (RTL), how to get node that was clicked knowing just the click coordinates ? Here is an interposed class, that makes the tree view to use ...
3
votes
2answers
304 views
How to fetch record count from ADO Query? [duplicate]
Possible Duplicate:
How to see progress of query execution during handle?
I would like to show a progress bar indicating how much time it would take to fetch the results from database.
I ...
1
vote
1answer
280 views
Strange WM_CHAR behaviour (wrong chCharCode)
I need to automate entering a certain character (Russian letter Э). In Spy++ the corresponding message looks like this:
WM_CHAR chCharCode: '221' (221) cRepeat:1 ScanCode:28 fExtended:0 fAltDown:0 ...
2
votes
1answer
753 views
Simulating keyboard input in Delphi using WinAPI
I need to programmatically enter one character into a cell of a Delphi grid (in other application).
In order to do this manually, following steps are required:
Press the F3 button.
Press the ...
3
votes
1answer
312 views
How to find out the index of a combo box item by name using WinAPI in Delphi?
I have a Delphi application A, which needs to select a certain item in a combo box of another Delphi application B.
A knows the text of the combo box item to select.
In order to select the combo box ...
0
votes
1answer
228 views
How to use MS UI Automation in Delphi 2009
I have a C# application, which uses Microsoft UI Automation functionality, e. g. a call like AutomationElement.RootElement.FindFirst(...).
Now I need to do the same thing (use MS UI Automation) in ...
0
votes
2answers
192 views
Delphi - Writing a program that reads a series of numbers and adds them up until the user enters 0 [closed]
This is where I am at So far and when I enter a number in the edit box and press the button it crashes, I am a newbie to Delphi please help! Thanks, Matt
var
Form3: TForm3;
Count: integer;
...
3
votes
2answers
588 views
Why does a combo box change its text to an item text at font change?
It's obviously a bug, but I cannot track down why happens. Here is a minimalistic code to reproduce. Just drop a combo box and button on a form and write the following event handlers:
procedure ...
3
votes
2answers
400 views
What windows messages are used by Delphi to notice changes in a combo box?
I have a Delphi application A, which I need to control from a .NET application B.
Among other things, I need to automate this process:
User selects item X from a combo box.
Application A notices ...
3
votes
1answer
163 views
Delphi 2009 Function eliminated by linker
I want to use the function DateTimeToStr while debugging a project. I want to use either the evaluate/modify window, or the watch window. This always results in the error "Function eliminated by ...
0
votes
0answers
93 views
How to detect color change of a TSemaphor control?
I have an application A, which has a little text box, surrounded by a frame, which indicates whether the system is ready or not. The text and the frame reside inside a Delphi TSemaphor control.
...
4
votes
2answers
149 views
Is there a workaround for “incompatible parameter list” message from Delphi IDE?
Please consider this simplified example:
type
TForm43 = class(TForm)
drwgrd1: TDrawGrid;
procedure drwgrd1DrawCell(Sender: TObject; ACol, ARow: Integer;
Rect: Windows.TRect; State: ...
3
votes
1answer
254 views
String comparison in Delphi
I have two strings, which I need to compare for equality.
String 1 is created in this way:
var
inBuf: array[0..IN_BUF_SIZE] of WideChar;
stringBuilder : TStringBuilder;
mystring1:string;
...
