May 8, 2003 #1 rweigh Programmer Apr 6, 2001 3 US I want to display the project version number that VB creates on a complile, but I have been unable to find any code reference to it. Any help???? Thanks.
I want to display the project version number that VB creates on a complile, but I have been unable to find any code reference to it. Any help???? Thanks.
May 8, 2003 #2 Kotaro24 Programmer May 6, 2003 22 US Somebody will probably beat me to it, but here's an example: Me.Caption = "Version " & App.Major & "." & App.Minor & "(" & App.Revision & "" Upvote 0 Downvote
Somebody will probably beat me to it, but here's an example: Me.Caption = "Version " & App.Major & "." & App.Minor & "(" & App.Revision & ""
May 8, 2003 Thread starter #3 rweigh Programmer Apr 6, 2001 3 US Thanks for your help... I knew it would be something very simple.. Thanks again. Upvote 0 Downvote