H harrisw Registered User. Local time Today, 06:00 Joined Mar 27, 2001 Messages 131 Oct 26, 2001 #1 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?
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?
M MrTibbs Registered User. Local time Today, 06:00 Joined Oct 10, 2001 Messages 101 Oct 26, 2001 #2 Assuming you have a function to read back the version number just define an unbound text box to be =yourfunction().
Assuming you have a function to read back the version number just define an unbound text box to be =yourfunction().
H harrisw Registered User. Local time Today, 06:00 Joined Mar 27, 2001 Messages 131 Oct 26, 2001 #3 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.
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 Registered User. Local time Today, 06:00 Joined Sep 17, 2001 Messages 232 Oct 26, 2001 #4 lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision