Thread: **New Installer
View Single Post
  #4  
Old 28-02-2016, 12:20
rinaldo's Avatar
rinaldo rinaldo is offline
Registered User
 
Join Date: Sep 2015
Location: Rome
Posts: 433
Thanks: 101
Thanked 696 Times in 191 Posts
rinaldo is on a distinguished road
exit in full page
Code:
procedure CancelButtonClick(CurPageID: Integer; var Cancel, Confirm: Boolean);
begin
Confirm:=False;
end;

exit to selectdir
Code:
Procedure CancelButtonClick(CurPageID: Integer; var Cancel, Confirm: Boolean);
Begin
if CurPageID  = wpSelectDir then
Confirm:=False;
end;


codex use fade type:

Code:
[ CODE]
const
AW_FADE_OUT = $00090000;

function AnimateWindow(hWnd: HWND; dwTime: DWORD; dwFlags: DWORD): Boolean;
external 'AnimateWindow@user32 stdcall';

Procedure CancelButtonClick(CurPageID: Integer; var Cancel, Confirm: Boolean);
Begin
Confirm:=False;
AnimateWindow(WizardForm.Handle,300,AW_FADE_OUT);
end;
__________________
if you understand read more

Last edited by rinaldo; 28-02-2016 at 13:12.
Reply With Quote
The Following User Says Thank You to rinaldo For This Useful Post:
audiofeel (28-02-2016)