0
votes
3answers
32 views
Mircrosoft Access Text ODBC Driver on Windows 7
I created a Delphi application which utilizes an ODBC data source to access text files in csv format. The driver is the "Microsoft Access Text Driver". But when I deploy my application on a Windows …
6
votes
1answer
133 views
What does ShFileOperation do when the recycle bin is full?
I use this procedure:
function MoveToRecycle(sFileName: widestring): Boolean;
var
fos: TSHFileOpStructW;
begin
FillChar(fos, SizeOf(fos), 0);
with fos do
begin
wnd := 0;
wFunc := …
0
votes
3answers
153 views
What is the preferred method of passing data between a service and an application [closed]
Possible Duplicate:
Delphi 2009: How to communicate between Windows service & desktop application under Vista?
I have a server running as a Windows service. To control the service and to …
0
votes
2answers
73 views
Odd behaviour with components with akRight alignment
In one customer computer (windows vista) almost all forms of my app are oddly unnaligned.
Making some investigation I noticed that every component with akRight anchor acts oddly, being positioned way …
0
votes
2answers
125 views
Application is visible on taskbar?
How to know if a Application is visible on taskbar?
I am using Delphi on windows.
0
votes
2answers
121 views
Delphi SDI application - Not handling cascade/tile horizontal & tile vertically?
My application doesn't seem to receive or handle the same windows messages for the Cascade, Tile Horizontal/Tile Vertical on specific windows versions.
Windows XP x32 - Not working
Windows XP x64 …
0
votes
2answers
61 views
How can I add the Thumbnails view to TShellList in Delphi?
Hi,
The TShellList component is based on TListView which (unfortunately) doesn't have in its ViewStyle property a 'vsThumbnail' (or similar).
How can I display thumbnails in TShellList in a similar …
0
votes
1answer
136 views
Connect with a database over the LAN
How to connect with a database over the LAN?
I have only the name of the computer.
0
votes
3answers
92 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
47 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
2answers
145 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, …
1
vote
4answers
179 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 …
0
votes
1answer
41 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 …
6
votes
3answers
182 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
309 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 …
