How do you extract the application version and display it in a label?
Printable View
How do you extract the application version and display it in a label?
Browes through the Object Browser or add a Splash Screen. Splash Screen Form does have the code for you application info. Like comments, version, date, copyright, and so on.
version 1.0.2846
App.Major <- Gets major version of program, the 1
App.Minor <- Gets the minor version of the program, the 0
App.Revision <- Gets the revision/build of the program, the 2846
VB Code:
Label1.Caption = App.Major & "." & App.Minor & "." & App.Revison
Like he said. lol