Build number in each page of Inno setup -


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; 

version in bottom left corner example


Comments

Popular posts from this blog

java - Suppress Jboss version details from HTTP error response -

gridview - Yii2 DataPorivider $totalSum for a column -

Sass watch command compiles .scss files before full sftp upload -