Home
Search
 
What's New
Index
Books
Links
Q & A
Newsletter
Banners
 
Feedback
Tip Jar
 
 
 
 
500MB 27GB Web Hosting - $9.95/Month
 
 
 
 
 
Old Pages
 
Old Index
Site Map
What's New
 
Books
How To
Tips & Tricks
Tutorials
Stories
Performance
Essays
Links
Q & A
New in VB6
Free Stuff
Pictures
 
 
 
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-2003 Rocky Mountain Computer Consulting, Inc.   All rights reserved.
  Updated