Is there a way to resize SelectDirPage? Because i can't deactivate it.
Code:
with WizardForm.SelectDirPage do begin
Left := ScaleX(1);
Top := ScaleY(1);
Width := ScaleX(500);
Height := ScaleY(364);
end;
Code:
wpSelectDir: begin
WizardForm.SelectDirPage.SetBounds(ScaleX(0), ScaleY(0), ScaleX(500), ScaleY(364));
Both doesn't work.
I'm not in the mood to create a whole new page instead.