Hi i want to display the version number of my application in VB6, I know the solution is going to be really simple.. please help!

Recommended Answers

All 4 Replies

You cand do it between your make it to exe

Go to... File --> Make Project1.exe --> Sect Option Buttom
you can see Version Number put your version on it
and press OK button. You will come back to page compile Program

and if you it increase auto then check under check box.

To display version number...

Option Explicit

Private Sub Command1_Click()
MsgBox App.Major & ":" & App.Minor & ":" & App.Revision
End Sub

Good Luck

Thanks for the help to all, vb5prgrmr your solution worked a treat many thanks for that :-)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.