9
votes
3answers
270 views
How to make sure that a file was permanently saved on USB, when user doesn’t use “Safely Remove Hardware”?
When I save a file on a USB within my delphi application, how can I make sure the file is really (permanently) saved on the USB, when "Safely Remove Hardware" is not performed (esp …
9
votes
8answers
2k views
64bits and Delphi 2010 [closed]
Do you have any information when Delphi 2010 will be available? We have plenty of low level code we would like to compile not only for 32 bits, but also for 64 bits, to fully suppo …
7
votes
6answers
435 views
How to create Chrome like application in Delphi which runs multiple processes inside one Window?
Is it possible to create an "application group" which would run under one window, but in separate processes, like in Chrome browser? I'd like to divide one application into multipl …
6
votes
3answers
170 views
How can I test my applications against the popular virus scanners?
I need to find out whether my apps are being flagged as viruses by the most popular anti-virus packages (not best, but biggest by user base). I therefore would like to know how oth …
6
votes
7answers
361 views
Split large file without copy?
Question:
Are there Windows API calls (perhaps NTFS only) which allows one to split a very large file into many others without actually copying any data (in other words, specify t …
5
votes
2answers
198 views
How can I efficiently retrieve the number of files in a directory?
Is there a way (on windows using Delphi 2010) to get the number of files in a dirctory without actually traversing all files?
I want to implement a progress bar during some file s …
5
votes
4answers
339 views
Accessing a single file with multiple threads
I need to access a file concurrently with multiple threads. This needs to be done concurrently, without thread serialisation for performance reasons.
The file in particular has be …
5
votes
5answers
474 views
Delphi 7 forms, anchors not working in Vista
The software is built on Delphi 7.
On my XP machine, the form resizes as I expect. However, on two Vista machines, I have components with anchors set to [akLeft, akTop, akRight, a …
5
votes
3answers
931 views
Cross-application drag-and-drop in Delphi.
I would like to create a Delphi application for Windows XP which allows dropping of files dragged from Windows Explorer (the Desktop or folder windows) or other applications which …
4
votes
4answers
374 views
Windows and Hints in Delphi
Hello again!
This morning I finally made my mind and decided to ask you for help. Problem is that in my Delphi application no hints are shown at all...
I have read about THintActi …
4
votes
6answers
389 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:
…
4
votes
5answers
602 views
Newly created modal window loses focus and become inacessible in Windows Vista
Sometimes when I open a modal window in my Delphi application it takes a while to show up, then I notice that the application is kind of blocked, and what happened was that the mod …
4
votes
8answers
1k views
What do I have to do to make my WH_SHELL or WH_CBT hook procedure receive events from other processes?
I'm trying to use SetWindowsHookEx to set up a WH_SHELL hook to get notified of system-wide HSHELL_WINDOWCREATED and HSHELL_WINDOWDESTROYED events. I pass 0 for the final dwThreadI …
4
votes
5answers
443 views
Is putting thread on hold optimal?
Application has an auxiliary thread. This thread is not meant to run all the time, but main process can call it very often.
So, my question is, what is more optimal in terms of CP …
3
votes
2answers
239 views
System wide keyboard hook on Vista and later
I have a system-wide keyboard hook DLL that I have created that has been working successfully for years in Windows XP.
However, it appears that in certain later versions of Window …
