In a Visual Basic 5 file (.vbd), how do I call userDocument terminate from userDocument Hide?
Option Explicit
Private Sub Command1_Click()
MsgBox "hello World"
End Sub
Private Sub UserDocument_Hide()
MsgBox "Before Termination"
<I want UserDocument termination here>
MsgBox "After Termination"
End Sub