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

ios - Is 'init' forbidden as *part* of a variable name? -

file - Python: AttributeError: 'str' object has no attribute 'readlines' -

c# - Get the Class name in a class with atribute inside a attribute method -