Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
Exchange Links About this site Links to us 
|
Show a window
This article has not been rated yet. After reading, feel free to leave comments and rate it.
To show a window above all other windows even when it is not the active window/ active application, use this API call:
 | |  | | SetWindowPos(Form1.handle, HWND_TopMost, 0,0,0,0,
SWP_NoMove or SWP_NoSize or SWP_ShowWindow); | |  | |  | You don't like the formatting? Check out SourceCoder then!
Comments:
|