View Full Version : Display version Number in vb


harrisw
10-26-2001, 05:06 AM
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?

MrTibbs
10-26-2001, 05:49 AM
Assuming you have a function to read back the version number just define an unbound text box to be =yourfunction().

harrisw
10-26-2001, 05:52 AM
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.

Surjer
10-26-2001, 06:34 AM
lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision