Tagged Questions

27
votes
3answers
661 views

How do I make my GUI behave well when Windows font scaling is greater than 100%

When choosing large font sizes in the Windows control panel (like 125%, or 150%) then there are problems in a VCL application, every time something has been set pixelwise. Take the TStatusBar.Panel. ...
21
votes
8answers
6k views

How to detect true Windows version

I know I can call the GetVersionEx Win32 API function to retrieve Windows version. In most cases returned value reflects the version of my Windows, but sometimes that is not so. If a user runs my ...
16
votes
1answer
264 views

How do I load icons from a resource without suffering from aliasing?

I have a GUI application which includes a number of icons used for toolbar buttons, menu glyphs, notification icons etc. These icons are linked to the application as resources and a variety of ...
16
votes
9answers
528 views

What can cause a program to run much faster the second time?

Something I've noticed when testing code I write is that long-running operations tend to run much longer the first time a program is run than on subsequent runs, sometimes by a factor of 10 or more. ...
14
votes
1answer
258 views

Why is trying to open a TOpenDialog spawning a ton of threads?

I've got a very simple form with a TOpenDialog and a button on it. When I press the button, it calls Execute on the dialog. If I watch in the debugger, the act of opening the dialog box spawns ...
14
votes
11answers
861 views

Is There a Way to Tell What Language Was Used for a Program?

I have a desktop program I downloaded and installed. It runs from an .exe file. Is there some way from the .exe file to tell what programming language was used to write the program? Are there any ...
13
votes
3answers
802 views

Windows Visual Themes: Gallery of Parts and States?

Microsoft Windows lets programmers draw GUI elements using the look and feel of the current theme using functions like DrawThemeBackground and DrawThemeText. The elements are specified by Class, Part, ...
12
votes
2answers
343 views

CreateProcessAsUser doesn't work when “change user”

First , I want to thank all the persons who works for this site, very useful for a developer. This is the first I am blocked in my developement since 3 days. I have searched solutions on Internet but ...
12
votes
4answers
1k views

A standalone Delphi application that can also be installed as windows service

In Delphi you can create a standalone Windows VCL Forms application. You can also create a Windows service application. Is it possible to combine the two in a single application that can run as a ...
11
votes
2answers
680 views

Checking digital signature programmatically from Delphi

I need a function in Delphi to verify the digital signature of an external EXE or DLL. In my particular application, I am going to occasionally invoke other processes, but for security purposes I ...
11
votes
6answers
2k 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, akBottom], but when I ...
10
votes
3answers
972 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 ...
10
votes
6answers
2k 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 ...
9
votes
4answers
336 views

How do I display Explorer with a file selected?

What's the API call to display an Explorer window with a specified file selected? Exactly as happens when you click the "Find Target..." button in the Properties dialog of a .lnk shortcut? I know ...
9
votes
4answers
828 views

Create a small and concise windows service using Delphi

I have created very simple windows service app updates some data files chronologically using Delphi. The service app compiles, and works well, but I am not happy with final exe file size. Its over ...
8
votes
1answer
115 views

Adding non-VCL window into VCL align queue

Some background (kind of a continuation of TLabel and TGroupbox Captions Flicker on Resize): So, I have an application that loads different plugins and creates a new tab on a TPageControl for each ...
8
votes
3answers
315 views

Porting Delphi code to 64 bit - Why no compiler warnings?

We have a large Delphi XE codebase we want to port to 64 bit. I own a Delphi XE2 licence and I cannot find any warning nor hint that can help me to detect valid 32 bit constructions that can now lead ...
8
votes
2answers
285 views

What can change my floating point control word behind my back?

I have a 32 bit Windows application, written primarily in Delphi, which performs floating point numerical simulations using the 8087 FPU. I have recently added the ability to link in external Python ...
8
votes
2answers
476 views

How to get the sort order in Delphi as in Windows Explorer?

Summarization: The terminology that I have been looking for seems to be "natural sort". For behaviors in operating systems: For Windows (version >= XP), Windows Explorer utilizes natural sort. For ...
8
votes
3answers
561 views

How to create own control in Windows 7 Aero task preview?

I've got two questions about Windows 7 task preview. In Delphi I'd like to create my own buttons inside the area highlighted in the screenshot below. 1) Is it possible to create my own controls in ...
8
votes
1answer
604 views

How to authenticate a user on the middle tier using Windows authentication

We have a server written in Delphi that uses RemObjects DataAbstract/SDK. We would like to use Windows authentication to authenticate users to allow them access to our server. Currently we do the ...
8
votes
4answers
322 views

Windows EventLog: How fast are operations with it?

I have a service application that is processing client requests over TCP and writing any events into Windows EventLog. Since this application is expected to service many clients and lots of requests ...
8
votes
5answers
2k views

Resources for Windows Aero Glass and Compositing (DWM)

I am looking for good resources for learning to use the Win32/GDI APIs or whatever supercedes it to draw and paint directly using the Win32 API to a glass form. While I am using Delphi, I tagged ...
8
votes
3answers
1k views

Borderless TForm with drop shadow

I have made a TForm derivative that acts like the drop down part of a combo, or a hint window, or a popup menu - a temporary thing. It has no caption - its BorderStyle is set to bsNone. The form is ...
8
votes
3answers
874 views

Delphi TOpenDialog hangs in windows 2008 when run as remote desktop application

I have a Delphi 2010 exe that launches a second exe. In the second exe, there is a dialog that calls openDialog.execute. When this runs under Windows 2008 Enterprise R2 under a remote desktop, it ...
8
votes
4answers
1k views

Delphi - How to prevent Forms/MsgBoxes to move under prior form?

Many times we experienced after Windows 98 era that some dialogs are lost their Z-Order, and moved back to prior form. For example: Dialog1.ShowModal; Dialog1.OnClickButton() : ...
8
votes
4answers
2k views

How can I read barcodes without having the user focus a text box first?

I recently acquired a Metrologic Barcode scanner (USB port), as everyone already knows it works as a keyboard emulator out of the box. How do I configure the scanner and my application so that my app ...
8
votes
7answers
5k views

How to get icon and description from file extension using Delphi?

Basically I have a TcxGrid which will be listing various files names and I'd like to give further details based on the file extension, specifically it's description (e.g. for .PDF it's "Adobe Acrobat ...
7
votes
2answers
768 views

Windows firewall

How to programmatically add an application or port to Windows Firewall.
7
votes
1answer
228 views

DUnit Compare Two Text Files and show Diff

Is there a way to compare two text files and show the diff if they are not identical in dunit? The easy start is to read them to TStringList, however the code for comparing two text file is much more ...
7
votes
3answers
301 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. ...
7
votes
4answers
1k views

Is there any way of detecting if a drive is a SSD?

I'm getting ready to release a tool that is only effective with regular hard drives, not SSD (solid state drive). In fact, it shouldn't be used with SSD's because it will result in a lot of ...
6
votes
2answers
131 views

How do I check if my Delphi console app is redirected to a file or pipe?

I have a console app that must disable or enable some operations when output is redirected (externally) to a file or pipe (myapp.exe > Foo.bar) How I can check if my Delphi console app is redirected ...
6
votes
2answers
195 views

How to get application's Windows taskbar button to show progress of progress bar

One of the features introduced in Windows 7 (or was it Vista?) is the capability of the taskbar button of an application to show the progress of a progress bar in that application. When I create a ...
6
votes
1answer
109 views

How can I play a single tone or custom wave with Delphi?

I looked up some code, seems like everything is creating some math function waves, but I want to a single tone, or a custom wave made with custom single tones. I read this How can I generate ...
6
votes
1answer
156 views

How to enter Windows Flip 3D mode on Windows Vista and above?

Is it possible to trigger the Flip 3D mode on Windows Vista above systems programmatically? It is the same as if you manually press CTRL + WIN + TAB
6
votes
3answers
158 views

Determining process virtual size using delphi

I have a Delphi program and I'm looking how this program could print its own "virtual size" in a log file, so that I can see when it used too much memory. How can I determine the "virtual size" using ...
6
votes
2answers
254 views

Third party code is modifying the FPU control word

The introduction - the long and boring part (The question is at the end) I am getting severe head aches over a third party COM component that keeps changing the FPU control word. My development ...
6
votes
1answer
316 views

Drawing on a 16 bit greyscale bitmap in memory

In need to draw on a 16 bit greyscale in-memory bitmap. Associating a TCanvas to the bitmap would be marvelous. I use Delphi but any language is OK. I just need the idea. Any Idea ? Converting the ...
6
votes
3answers
241 views

Start external app with ShellExecuteEx and wait until it become initialized

I have an application which needs to run several other applications in chain. I am running them via ShellExecuteEx. The order of running each of the apps is very important cause they are dependant on ...
6
votes
5answers
305 views

How much memory should a caching system use on Windows?

I'm developing a client/server application where the server holds large pieces of data such as big images or video files which are requested by the client and I need to create an in-memory client ...
6
votes
1answer
106 views

Changing font in CHOOSECOLOR dialog

I'm using the Windows common controls CHOOSECOLOR dialog, but on Win 7 it sticks out like a sore thumb as it still uses the 'old' Tahoma font. Is there a fairly easy way of getting it to use Segoe ...
6
votes
4answers
441 views

Can task-switching keyboard shortcuts be disabled in W7 using Delphi?

MY application has had a mode for years where the customer can 'disable access to the OS'. Obviously this feature goes against the grain (at least as far as Windows is concerned) but there are ...
6
votes
1answer
207 views

How to make an application GPO aware?

I'm writing an application in Delphi 2010, and I'd like to provide the option to the administrator to configure it via Group Policy. Any recommendations on good ways to make my application GPO aware? ...
6
votes
2answers
2k views

How do I deploy applications in run as administrator mode?

How Do I deploy applications so that they require administrator rights without the end-user doing that by hand? I use Delphi 2009 to build the application.
6
votes
5answers
1k views

How do I make my program work in Windows Vista and Windows 7?

I have an application written in Delphi 2006 that was working fine in Windows XP. I packed the application using Inno Setup, using Program Files as the default folder. A few users migrated to Windows ...
6
votes
5answers
2k views

How can I keep Task Manager from killing my program?

Is there any way to protect my Delphi application from being killed by the Windows task manager (or others like Process Explorer)? I think Windows messages can do that (by doing a hook and ...
6
votes
1answer
356 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 := ...
6
votes
4answers
2k 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 ...
6
votes
7answers
1k 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 ...

1 2 3 4 5 9