0
votes
3answers
56 views
Is there any alternate way to supply similar functions as COM does?
Window's COM allow us to wrap our application function for out-of-process invocation. If the COM interfaces are well defined and design, it is certainly great to consume the services via scripts and …
0
votes
1answer
36 views
How can I access Blackfish for Windows over JDBC?
For Blackfish for Windows which is included in Delphi 2009 I would like to write a Java client and use a JDBC connection. If I understand correctly, this is supported: …
0
votes
1answer
33 views
Working with IME names in Delphi
Hi,
Delphi TScreen object has a collection that accepts IME names. And the TControl offers SetIMEName method.
Are these IME names constant? Are they same as ISO language names?
Platform: Windows …
1
vote
4answers
167 views
Delphi printing primer
I need to add printing capabilities to an app and I have been looking around for information about printing. Logical/physical sizes, dpi, font scaling, etc, lots to digest since I never programmed …
6
votes
3answers
174 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 others go about this. …
9
votes
3answers
279 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 (especially forgotten to …
0
votes
3answers
169 views
FileExists timeout [closed]
Possible Duplicate:
Faster DirectoryExists function?
I want to check if some file exists on a network drive. But FileExists is too slow if drive is disconnected. How can I check it with some …
5
votes
4answers
354 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 been created with the …
5
votes
2answers
202 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 system indexing …
6
votes
7answers
365 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 the logical …
0
votes
2answers
128 views
Memory mapped files optional write possible?
When using memory-mapped files it seems it is either read-only, or write-only. By this I mean you can't:
have one open for writing, and later decide not to save it
have open open for reading, …
-14
votes
1answer
495 views
Get drive information (free space, etc.) for drives on Windows and populate a memo box
I am trying to get all the information about my hard drives displayed in a memo or some other control so I can see free space and total space on the drives. I know there is a shell call I can use, but …
2
votes
4answers
222 views
How to deploy Python to Windows users?
I'm soon to launch a beta app and this have the option to create custom integration scripts on Python.
The app will target Mac OS X and Windows, and my problem is with Windows where Python normally …
2
votes
6answers
213 views
How do I make my Delphi 5 app display password “blobs”?
Pretty simple one, but I can't find the answer.
I'm building an app in Delphi 5 Enterprise, and want my app to use the new bold black dot in a password field instead of an asterisk.
How can I do …
7
votes
6answers
447 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 multiple parts, so that one …
