Inno Setup Wizard Page onscreen placement (off-centre position) -


i specify wizard pages not open in middle of screen default i.e. position them off-centre using x,y coordinates (or similar offset). because call program opens in middle of screen, obscuring progress page. if open wizard pages offset left or top, example, mean both windows visible @ same time, without having reposition them. possible and, if so, how done?

just offset wizardform.left , wizardform.top needed:

procedure initializewizard(); begin   wizardform.left := wizardform.left - scalex(320);   wizardform.top := wizardform.top - scaley(160); end; 

or maybe:

procedure initializewizard(); begin   wizardform.left := wizardform.left div 2;   wizardform.top := wizardform.top div 2; end; 

Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -