Display version Number in vb

harrisw

Registered User.
Local time
Today, 17:51
Joined
Mar 27, 2001
Messages
131
When you compile a vb projext and have the auto increment switched on for the version number.

Is there any way to display the version number on a form without changing a label on the form every time?
 
Assuming you have a function to read back the version number just define an unbound text box to be =yourfunction().
 
No.

The version number sits within a VB6 project as a properties value.

I don't now the command to get hold of these properties, if its possible.
 
lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
 

Users who are viewing this thread

Back
Top Bottom