Hi VBForums,
Since the vbAdvance add-in is now no longer supported, I'm not sure if one should even contact the author for this question, so I think I'll just ask it up here.
So, as you will usually get the versioning number of a project by the App.Major, App.Minor thing, now how do you/is it possible to get the "real" App.Revision number at run-time? Because it is believed that what VB calls the Revision field is actually the Build field, right?
I wanted to do something like the following:
Thank you in advance.
Since the vbAdvance add-in is now no longer supported, I'm not sure if one should even contact the author for this question, so I think I'll just ask it up here.
So, as you will usually get the versioning number of a project by the App.Major, App.Minor thing, now how do you/is it possible to get the "real" App.Revision number at run-time? Because it is believed that what VB calls the Revision field is actually the Build field, right?
I wanted to do something like the following:
Code:
lblVersion.Caption = "Version: " & App.Major & "." & App.Minor & "." & App.Revision & " (Build " & Format$(App.Build, "0000") & ")"