Posts

Showing posts with the label DDEMan

How to open Windows OS dialog in Delphi ?

Image
Sometime it is required to open common windows dialog like Regional Settings dialog, Date Time Setting dialog, Windows About dialog etc. from our application. So here in this blog I have created a separate unit which having functions that calls WinApi procedures to open windows common dialog. So lets see… Here I created a unit TestWinDialogs and have added function to open windows common dialog. Then I added the unit to a Delphi project. unit TestWinDialogs; interface uses   Windows, Dialogs, Messages,  DDEMan,  ShellAPI, SysUtils, ShlObj, ActiveX; type   TWindowsDialogs = (wdStartMenu,                       wdRecycleBin,                       wdRunFile,                       wdUserManager,                       wdWindowsAbout...