Here is a greeat way to add versin info to your program. First create a function called progver and add this code,a label and a command button control like this below:
Code:
Private Sub Command1_Click()
Call progver
End Sub

Public Function progver()
MsgBox "Version 2.12"

End Function

Private Sub Label1_Click()
Call progver
End Sub