View Single Post
  #239  
Old 11-03-2013, 12:08
altef_4's Avatar
altef_4 altef_4 is offline
Registered User
 
Join Date: Mar 2012
Location: Ukraine
Posts: 361
Thanks: 248
Thanked 1,022 Times in 239 Posts
altef_4 is on a distinguished road
Quote:
Originally Posted by danswano View Post
How to skip the Start Menu Folder dialog please?
you mean "select program group page"? If yes then
Code:
[setup]
DisableProgramGroupPage=yes
or in code section
Code:
function ShouldSkipPage(PageID: Integer): Boolean;
begin
if (PageID = wpSelectProgramGroup) then result:=true;
end;

Last edited by altef_4; 12-03-2013 at 11:37. Reason: rusult->result
Reply With Quote
The Following User Says Thank You to altef_4 For This Useful Post:
danswano (11-03-2013)