Tagged Questions
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.
11
votes
4answers
2k views
When should I use enhanced record types in Delphi instead of classes?
Delphi 2006 introduced new capabilities for records, making them more 'object-oriented'.
In which situations is the record type more appropriate for a design than a class type?
Which advantage does ...
9
votes
2answers
284 views
Delphi - finding the process that is accessing a file from my program
I have a Delphi app that regularly writes to a local disk file. Occasionally it is unable to access the file - a sharing violation results when it tries to open it. A retry after a short delay is ...
9
votes
3answers
336 views
What's the most CPU-efficient way to “waste time” in a thread?
I have a number of threads (100's) that each execute for a few seconds at a time. When they are executing, they spend a significant amount of that time waiting for a response from another system (a ...
8
votes
4answers
267 views
Repeated setters logic in Delphi
For each setter of a class I have to implement some event logic (OnChanging, OnChanged):
procedure TBlock.SetWeightIn(const Value: Double);
var OldValue: Double;
begin
OldValue := FWeightIn;
...
7
votes
6answers
171 views
What is an efficient way of deleting a large block of items from the start of a TList in Delphi
Delete (0) from a TList is expensive because all the subsequent items need to be moved down. If I need to delete a large number of items from the start of an even larger list what's the fastest way?
7
votes
2answers
184 views
Strategy or tools to find “non-leak” memory usage problems in Delphi?
One old application started to consume memory a lot after server update. Memory usage seems to rise with out limit until program hangs.
According to FastMM4 and EurekaLog, there's no memory leak ...
7
votes
3answers
5k views
INDY 10.1.5 - Which SSL dlls work?
I'm trying to connect to google documents (following Marco Cantu's excellent REST example) but I am getting the following SSL errors:
1) If I use the SSL dlls from openssl-0.9.8i-i386-win32.zip I get ...
7
votes
3answers
203 views
Approaches for caching calculated values
In a Delphi application we are working on we have a big structure of related objects. Some of the properties of these objects have values which are calculated at runtime and I am looking for a way to ...
6
votes
4answers
327 views
Delphi - try finally block is guaranteed by compiler to be executed correctly?
I know this was discussed on other topics also, what I'm asking is exactly the title of this question.
Is there such case when try/finally the finally won't execute?
try
//some error here
...
6
votes
0answers
711 views
Balloon hints on Delphi app tray icon keep popping up indefinitely
I have a Delphi 2006 app that can minimize to a tray icon, and displays various alert messages via a balloon hint over the tray icon.
Under some circumstances - I don't know when - a previously ...
6
votes
1answer
379 views
I can't get Delphi Context-sensitive help working in open and save dialogs
I have a Delphi 2006 app with a CHM help file. It all works OK except that I cannot get any help to connect to the "Help" button on the TOpenDialog and TSaveDialog.
A simple program demonstrating ...
6
votes
2answers
190 views
Why doesn't {$ifopt FINITEFLOAT ON} compile?
I have the construct:
{$ifopt FINITEFLOAT ON}
{$message 'FINITEFLOAT option ON' }
{$else }
{$message 'FINITEFLOAT option OFF' }
{$endif }
in my source and it won't compile! It's got to be ...
5
votes
1answer
461 views
Delphi 2006: Run-time assignment of PNG to TImage loses alpha transparency
Delphi 2006's TImage doesn't quite support PNGs. In order to have images with alpha transparency on my forms I have to load them at run-time. I can load them at design time but they don't survive, I ...
5
votes
2answers
552 views
Copying string content to char array
I want to copy the content in the string to char array.
Can I use this code StrLCopy(C, pChar(@S[1]), high(C));
I am currently using Delphi 2006. Will there be any problems if i upgrade my Delphi ...
5
votes
3answers
298 views
Delphi debug a wrong unit
This is an odd behaviour by my D2006 as it happens sometimes only. I have a project I want to debug. The file I want to debug is named 'Main.pas'. I have another unrelated project with the same Unit ...
5
votes
3answers
738 views
Mutually dependent records in Delphi
I am using the operator overloading for records in Delphi 2006. (Please don't answer this question by telling me not to.)
I have two record types with the implicit operator overloaded. They are both ...
5
votes
4answers
286 views
How do you do a global search and replace in all the files in Delphi 2006 project
Help !!!
I have just spent about 10 minutes looking for a way to do a search and replace over all the files in Delphi 2006 project.
Please can you tell how to do it
4
votes
1answer
165 views
It seems that sometimes Delphi is case-sensitive - override method should match case of ancestor
Today I've encountered a 'strange' hint: override method xxxx should match case of ancestor yyyy. Solution was to declare the method name exactly as in the ancestor....I believe this is something ...
4
votes
1answer
187 views
Get the list of ODBC data source names programatically using Delphi
I saw several examples where the list of the source names were took from registry (HKEY_LOCAL_MACHINE\Software\ODBC\ODBC.INI\ODBC Data Sources). Is there any other way to get the list of ODBC data ...
4
votes
1answer
194 views
How to find out the name of the common documents folder on a network machine
Given that I am executing an EXE file (D2006 app) on a machine across the network, how can I get the pathname to the commondocs folder on that machine, given that the EXE might have been invoked from ...
4
votes
2answers
213 views
Delphi - How do I break when a form's ComponentCount decrements
The code below is reproduced from Toolbar2000. It is part of routine that reads toolbar positions and dock states from an INI file. I call this routine during initialisation. This code below is ...
4
votes
4answers
202 views
Delphi - how might I find out the source of long delays on resizing the main form? (solved)
I have a D2006 app that contains a page control and various grids, etc on the tabs. When I resize the main form (which ripples through and resizes just about everything on the form that is aligned to ...
4
votes
3answers
700 views
how do I avoid this unwanted behaviour with Delphi's TSplitter and panels?
Included is a small project demonstrating my problem. I have a TPageControl aligned to the main form. On each of two tabsheets I have panels client aligned. On each of those panels I have 2 ...
4
votes
6answers
435 views
How to get a 64-bit random value in Delphi?
How can I create a random 64-bit integer value in Delphi 2006? The built-in integer-based Random() function seems to return only values between 0 and 2^31.
4
votes
4answers
2k views
sprintf in Delphi?
Does anyone know a 100% clone of the C/C++ printf for Delphi?
Yes, I know the System.Format function, but it handles things a little different.
For example if you want to format 3 to "003" you need ...
4
votes
3answers
3k views
How to download a file over HTTPS using Indy 10 and OpenSSL?
I have the following task: download a file using HTTPS and authentication. Indy seems the way to go but for some reason it doesn't work so far. I have the following in place:
a TIdHTTP component ...
3
votes
2answers
73 views
Delphi - Catch all action.onexecute from an application
I have a big application with hundreds of TActions. Each of them is used and implements different functionality needed.
It is possible to catch (hook) all the TAction.OnExecute from an application? ...
3
votes
5answers
161 views
Delphi - Exception handling on it's own constructor after it is raised
The question is: after am raising an exception, can I stop it to propagate from it's own constructor? consider the code bellow:
unit Unit2;
interface
uses
Windows, Messages, SysUtils, Variants, ...
3
votes
1answer
121 views
Delphi 2006 - What's the best way to gracefully kill a thread and still have the OnTerminate handler fire?
I have a thread that sometimes freezes (I suspect) due to a DLL call that never returns. In the general case, where you have calls to blocking routines like Indy, is there a way of recovering from ...
3
votes
3answers
208 views
Change caption and attributes of ShowMessage dialog
In Delphi can you change the caption of the ShowMessage dialog because by default it is taking my exe name.
And can I change the background color, size of the same?
3
votes
1answer
95 views
What's a simple way of programmatically simulating user input?
I have a dialog that pops up as result of an error condition. I want the dialog to remain open for at least 30 seconds, and close 30 seconds after the last user input (mouse or keyboard) is received.
...
3
votes
1answer
308 views
Why Delphi says “Unit xxx compiled with a different version of yyy” if all my paths are correct?
First of all I would like to apologize for the question itself. I simply could not make anything better. Well, the question then follows with examples and detailed ...
I manually installed ...
3
votes
1answer
200 views
Delphi TPrinters.GetPrinters call hangs
I have an app that has returned an error report. The app is written in Delphi 2006 and hangs during startup. The MadExcept main thread stack is shown below. I suspect there is no default printer ...
3
votes
1answer
214 views
Problem in generating complex types while using XML Data Binding
I am using XML Data Mapping and having a problem with generating complex types while using it.
If i am having an XML like below its working fine
<?xml version="1.0" standalone="yes" ?>
...
3
votes
1answer
707 views
How to convert between TVarRec and Variant?
Is there a standard way to convert between TVarRec and Variant values?
I want to parse an 'array of const' and use the values to populate parameters in a TMSQuery. To do this I'm using a list of ...
3
votes
2answers
259 views
Why use string[1] rather than string while using readbuffer
I am having a record like this
TEmf_SrectchDIBits = packed record
rEMF_STRETCHDI_BITS: TEMRStretchDIBits;
rBitmapInfo: TBitmapInfo;
ImageSource: string;
end;
---
---
...
3
votes
6answers
589 views
Data structure for fast filtering (Delphi)?
I am optimizing a part of a Delphi application where lists of objects are frequently filtered using different criteria. The objects are kept in TObjectList structures and it is common to select a very ...
3
votes
4answers
338 views
Strange attribute value reported by FindFirst(), Attr = 2080
When searching for files with FindFirst() I get an attribute value in the TSearchRec.Attr field of 2080. It is not specified in the help as there are only these values available and no combination of ...
3
votes
4answers
1k views
Parsing XML references in Delphi
I used Delphi 2006 data binding wizard to create a interface for an XML configuration file. Later on I realized that some repeated parts of the XML can be separated from the main file and referenced ...
2
votes
1answer
160 views
Delphi - Application independent of Regional Settings
I need to make an application(D2006) independent of Regional Settings, most important all the dateformats must be the same.
For the begging I want to replace all the FormatDateTime('adateformate') ...
2
votes
0answers
117 views
StatusFilter on ClientDataSet
I'm having some difficulties using ClientDataSet.StatusFilter := [usDeleted].
It doesn't do anything. I'm having my ClientDataSet hooked up to a Provider.
When applying the StatusFilter the DataSet ...
2
votes
3answers
154 views
delphi pointer question
I have the following code which is working, but I don't understand it 100% (please see the comments from code):
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, ...
2
votes
2answers
274 views
LDAP - Querying if a user is a member of a group using ADO/Delphi
Active Directory/LDAP Newbie here!
I'm using Delphi to develop and application which interacts with Active Directory. I need to know the best way to test whether an Active Directory user belongs to a ...
2
votes
3answers
356 views
Delphi idle handler only fires when I move the mouse
I have an OnIdle handler in my D2006 app. With this code:
procedure TMainForm.ApplicationEvents1Idle(Sender: TObject; var Done: Boolean);
begin
Inc (IdleCalls) ;
Sleep (10) ;
Done := False ;
end ;
...
2
votes
1answer
382 views
Why doesn't this D2006 code to fade a PNG Image work?
This question springs from an earlier one. Most of the code is from suggested answers that probably worked in later versions of Delphi. In D2006 I don't get the full range of opacity, and the ...
2
votes
2answers
253 views
What is the simplest way to add an AlphaBlendValue property to Delphi's TImage
I have a "caution" image on a dialog that is shown if there are questionable parameter values. Users do not always notice it, so I want to fade it in and out cyclically over a second or so (yes, I ...
2
votes
2answers
101 views
how to Debug dll build in VC++ with Delphi code?
I am a developer working on Delphi,in my project I have added Dll which build in VC++. I need to debug the Dll to fix some issues.
so what are steps needed to follow in order to debug Dlll with ...
2
votes
2answers
203 views
implementing a timeout when reading a file with Delphi
I have an app written in Delphi 2006 that regularly reads from a disk file located elsewhere on a network (100Mb ethernet). Occasionally the read over the network takes a very long time (like 20 ...
2
votes
5answers
301 views
Sharing a common memory area in Delphi between PCs
I have a Delphi 2006 app that gathers data and displays it as a summary of many channels, one channel per row on a TDrawGrid. I have the same app running on various other PCs on the network, but ...
2
votes
4answers
674 views
Getting Jpeg error #51 when loading from BLOB with Delphi 2010, fine w Delphi 2006
I have an old application developed in Delphi 2006 that I now needed to make some changes in.
In this app, I'm loading images from a MsSQL "image" field
but when i compile with delphi 2010 I get the ...