4,046 reputation
1620
bio website
location
age 45
visits member for 7 months
seen 33 mins ago
stats profile views 547

2d
comment Why doesn't this thread terminate?
@Bill Hand over all necessary information to the thread to get the background work done. Synchronize or Queue only status information (e.g. Progress) and check the Terminated flag during the work.
2d
comment Why doesn't this thread terminate?
@Bill You should rethink your concept using threads. It is a very bad idea just to call a form method from inside the thread to do all the work and doing this synchronized will "unthread" your thread.
May
15
answered Delphi 'private' clause (directive) does not work
May
13
comment Does IdIMAP4.UIDRetrieveEnvelope get the entire message body?
You should have a look at tools.ietf.org/html/rfc3501 to get the idea and namings behind the IdIMAP4 component. And it is the same as in real world ;o)
May
10
comment Creating a forms editor in Delphi
@eelias paint it on the form canvas using the forms OnPaint event
May
10
comment XE4: How to change exe output name base on platform?
+1 Thats the official way to go. You can find a sample InnoSetup project dealing with x64/x32 here stackoverflow.com/questions/16396248/… - You can also rename the exe files with the setup script
May
10
revised How to lock on to a cloned form in Delphi?
deleted 218 characters in body; edited tags
May
8
comment How can hide horizontal scrolling on dbgrid in Delphi
Do you want to hide the ScrollBar or resize the colums so that the ScrollBar is not shown?
May
7
comment How do I make FastReport generate a PDF that's viewable on iOS?
@LeonardoHerrera +1 FR generated PDF files kills QuarkExpress instance on Mac while importing them. It's the worst PDF generator I've seen so far (but I love the report engine itself)
May
7
comment Is a Thread Safe field of TThread itself thread safe?
One rule for me: a public field is never threadsafe, because of the public write access
May
6
comment Is there a generic “Object Pool” implementation for Delphi?
generic means with generics?
May
6
answered Executing RegEdit from Delphi exe
May
6
comment Executing RegEdit from Delphi exe
@DavidHeffernan One code (application) -> 2 platforms -> (in this case) leads to two executables and two dll files and two registry entries (pointing to the dll files)
May
6
comment Executing RegEdit from Delphi exe
I didn't get the point here at all. If the app should run as 32bit and 64bit you have 2 executables and 2 dll (one for each platform). But you can use the same code in both of them and also the dll can have the same name, because they are separated by different locations. Windows takes care for that different locations with this redirection. So whats the real point to have your 32bit app point to the location where the 64bit dll should exists?
May
6
comment Executing RegEdit from Delphi exe
Execute RegEdit from your own application just to write to registry is like having the key but always ring the bell to let you get inside
May
6
revised TADOStoredProc returns either recordset or value of output param (not both)
edited tags
May
6
revised PosEx not works in Design-Time Package
edited tags
May
6
revised The anchor property of components when the application is maximized in Delphi
edited tags
May
6
revised Determining video file properties using DSpack and Delphi7
edited tags
May
6
revised EIdReplyIMAP4Error in Indy
edited tags