aafuss
Feb 21st, 2003, 10:17 PM
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:
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
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