PlanetSquires Forums

Support Forums => Other Software and Code => Topic started by: xstreur on February 23, 2017, 08:55:57 AM

Title: Versioning/compile-interation of the application.
Post by: xstreur on February 23, 2017, 08:55:57 AM
I'd like to incorporate the version number (FF generates every iteration when I compile the program) into on of my screen.
How do I get this version into a string?

Thanks for the help.
Title: Re: Versioning/compile-interation of the application.
Post by: Ian Vincent on February 23, 2017, 10:42:31 AM
Have a look at the App Variable (under special functions in help)



I often do something like this:
FF_StatusBar_SetText( HWND_FORM1_STATUSBAR, 0, "Build : "+Format$(app.FileMajor)+"."+Format$(app.FileMinor)+"."+Format$(app.FileRevision)+"."+Format$(app.FileBuild))


Ian