#1
|
||||
|
||||
How to Hide Inno Setup in Taskbar?
Please Help
![]() |
Sponsored Links |
#3
|
||||
|
||||
try
Code:
[ code] const GWL_HWNDPARENT = (-8); GWL_EXSTYLE = (-20); WS_EX_TOOLWINDOW = $80; function GetWindowLong(hWnd, nIndex: Integer): Longint; external '[email protected] stdcall delayload'; function SetWindowLong(hWnd: HWND; nIndex: Integer; dwNewLong: Longint): Longint; external '[email protected] stdcall delayload'; function ShowWindow(hWnd: Integer; uType: Integer): Integer; external '[email protected] stdcall delayload'; procedure InitializeWizard(); var hWindow: HWND; begin hWindow := GetWindowLong(MainForm.Handle, GWL_HWNDPARENT); SetWindowLong(hWindow, GWL_EXSTYLE, GetWindowLong(hWindow, GWL_EXSTYLE) or WS_EX_TOOLWINDOW); ShowWindow(hWindow, SW_HIDE); end; |
The Following User Says Thank You to Cesar82 For This Useful Post: | ||
Gehrman (01-03-2020) |
![]() |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
[CIUv3] Custom Installer Ultimate v3 | KaktoR | Conversion Tutorials | 844 | 13-06-2022 14:25 |
BlackBox v2 | y_thelastknight | Conversion Tutorials | 564 | 21-10-2021 09:34 |
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup | REV0 | Conversion Tutorials | 129 | 21-05-2021 05:51 |
Useful Dll for Inno Setup users | peterf1999 | Conversion Tutorials | 88 | 01-12-2017 16:00 |
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup | REV0 | Conversion Tutorials | 51 | 26-03-2015 06:57 |