Home
Search
 
What's New
Index
Books
Links
Q & A
Newsletter
Banners
 
Feedback
Tip Jar
 
C# Helper...
 
XML RSS Feed
Follow VBHelper on Twitter
 
 
MSDN Visual Basic Community
 
 
 
 
 
 
TitleShow a project's product information set in Project\Properties\Make
Keywordsversion, copyright, minor, major, project properties, make
CategoriesSoftware 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
 
 
Copyright © 1997-2010 Rocky Mountain Computer Consulting, Inc.   All rights reserved.
  Updated