Build number in each page of Inno setup -
this question has answer here:
inno setup 5.5.7 changes default value of disablewelcomepage true match microsoft's desktop applications guidelines - in order reduce number of user's clicks. me, single important information on welcome page version , build number of product.
indeed, example microsoft shows build number in bottom lower corner - left of "next" button. how can program this?
you can use tnewstatictext
achieve that.
simple example:
#define myappversion "6.3.129.200"; [code] procedure initializewizard; var statictext: tnewstatictext; begin statictext := tnewstatictext.create(wizardform); statictext.parent := wizardform; statictext.left := wizardform.outernotebook.width - (wizardform.cancelbutton.left + wizardform.cancelbutton.width - scalex(1)); //to position left cancelbutton right statictext.top := wizardform.nextbutton.top + scaley(5); //to position same vertical position buttontext statictext.caption := 'build {#myappversion}'; end;
Comments
Post a Comment