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( …
4
votes
6answers
387 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:
…
3
votes
3answers
299 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 …
