[Code]
function SetWindowLong(Wnd: HWnd; Index: Integer; NewLong: Longint): Longint; external '
[email protected] stdcall';
function GetWindowLong(Wnd: HWnd; Index: Integer): Longint; external '
[email protected] stdcall';
Function GetWindow (HWND: Longint; uCmd: cardinal): Longint;external '
[email protected] stdcall';
procedure InitializeWizard();
begin
SetWindowLong(WizardForm.Handle, -8,GetWindowLong(GetWindow(WizardForm.Handle, 4),-8));
end;