|
|
Title | Show a project's product information set in Project\Properties\Make |
Keywords | version, copyright, minor, major, project properties, make |
Categories | Software Engineering, Tips and Tricks |
|
|
Use the App object's ProductName, Major, Minor, Revision, and LegalCopyright properties.
To set these properties, select the Project menu's Properties command (at the bottom) and click on the Make tab.
|
|
Private Sub Form_Load()
lblProduct.Caption = App.ProductName
lblVersion.Caption = "Version " & _
App.Major & "." & _
App.Minor & "." & _
App.Revision
lblCopyright = App.LegalCopyright
End Sub
|
|
|
|
|
|