Search Results

2
votes
3answers
2k views

Delphi Multi-Threading Message Loop

Hi There, My application has several threads: 1) Main Thread 2) 2 Sub-Main Threads (each with Message Loop, as shown below), used by TFQM 3) n Worker Threads (simple loop, containing Sleep( …
1
vote
2answers
326 views

Delphi to .NET + C#

Hi, I've been a Delphi (D7) developer for many sometime already, I've always been wondering about the .NET + C# stuffs. What I mean are about not the "Delphi for .NET" or "Oxygene" tech/plu …
5
votes
4answers
467 views

Duplicating components at Run-Time

Is there a simple way to duplicate all child components under parent component, including their published properties? For example: TPanel TLabel TEdit …
4
votes
3answers
1k views

Delphi 2009 and Firebird 2.1 = Full Unicode?

Has anyone started making Unicode Apps or converting Existing Apps into Unicode? How are you tweaking Firebird to have the least problems, especially the CHARSET attribute? Is there …
14
votes
13answers
1k views

How do I start with working Sub-Version + Delphi?

Hi there, I'm new to this SCM, but since SVN is gaining popularity I was going to give it a try. Things I noticed: SVN is only the backbone of the SCM, no front-end? …
4
votes
6answers
398 views

Windows Service: Do work at specified times (Delphi)

Just checking if there's any best practice when writing a Windows Service. The Service (Single-thread) needs to work at specified time intervals, right now I can only think of: …
1
vote
1answer
768 views

Delphi + Indy: Connection closed gracefully

Using D7 + Indy 10 latest build. My code is using TIdSMTP to send email. I keep getting "Connection closed gracefully" at some end-users, and the email is never sent. The code is l …
2
votes
7answers
314 views

Delphi 7 compile getting slower over time?

My project has around 400 units, it takes 20-40secs to compile after a fresh reboot, then than 1-5secs for sub-sequent re-compiles, so far so good. After working for over 3 …
3
votes
3answers
302 views

Is there programmatical way to get short day names in windows?

Is there a way to get a 2 character day-name of the week such as MO/TU/WE/TH/FR/SA/SU? Currently I only know of using FormatDateTime(): "ddd" returns "Fri" "dddd" returns …
6
votes
5answers
388 views

Delphi incremental changes? From D7 to D2009

Is there a website or documentation that details the changes made from each version? Say, D7 -> D2005 -> D2006 -> D2007 -> D2009 Language features? DB features? …
1
vote
2answers
165 views

Delphi VirtualTreeview.OnAfterItemPaint issue when scrolling?

I'm getting issues drawing using OnAfterItemPaint event when horizontal scrolling is performed. Basically what I want to achieve is the merging of selected cells effect, sa …