this function gets called from the main class
Function ShowAbout()
Dim About As String
About = App.ProductName & " " & App.Major & "." & App.Minor & "." & App.Revision _
& vbCrLf & App.FileDescription
MsgBox About, vbInformation, "About..."
frmAbout.Show
End Function
but everything after (MsgBox About, vbInformation, "About...") is ignored.
the function is called by:
Public Function Configure()
ShowAbout
End Function
in the main class
thanks