Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 29-02-2020, 06:52
Gehrman's Avatar
Gehrman Gehrman is offline
Registered User
 
Join Date: Jan 2020
Location: Save Palestine
Posts: 78
Thanks: 1,372
Thanked 89 Times in 48 Posts
Gehrman is on a distinguished road
How to Hide Inno Setup in Taskbar?

Please Help
Reply With Quote
Sponsored Links
  #2  
Old 29-02-2020, 07:26
shazzla shazzla is offline
Registered User
 
Join Date: Nov 2010
Location: Hunnia
Posts: 292
Thanks: 523
Thanked 102 Times in 78 Posts
shazzla is on a distinguished road
I dont think its possible by innosetup.

Oh. My mistake ?

Last edited by shazzla; 29-02-2020 at 22:23.
Reply With Quote
The Following User Says Thank You to shazzla For This Useful Post:
Gehrman (01-03-2020)
  #3  
Old 29-02-2020, 22:08
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,303 Times in 786 Posts
Cesar82 is on a distinguished road
try
Code:
[ code]
const
  GWL_HWNDPARENT = (-8);
  GWL_EXSTYLE = (-20);
  WS_EX_TOOLWINDOW = $80;

function GetWindowLong(hWnd, nIndex: Integer): Longint;
  external 'GetWindowLongW@user32 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;
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
Gehrman (01-03-2020)
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
[CIUv3] Custom Installer Ultimate v3 KaktoR Conversion Tutorials 921 26-04-2026 12:35
BlackBox v2 y_thelastknight Conversion Tutorials 567 11-03-2025 07:16
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



All times are GMT -7. The time now is 19:35.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com