Hello,
I have a basic question: What is the importance of OwnerForm on the Sub Show?
For Example:
Imagine that you want to call a certain function in a second form.
In Form 1
Private Sub Command1_Click()
Form2.LoadModal (Me)
End Sub
In Form 2
Public Sub LoadModal (xOwner as Form)
Me.Show vbModal, xOwner 'Exactly here I could use only Me.Show vbModal?
End Sub
Regards
I have a basic question: What is the importance of OwnerForm on the Sub Show?
For Example:
Imagine that you want to call a certain function in a second form.
In Form 1
Private Sub Command1_Click()
Form2.LoadModal (Me)
End Sub
In Form 2
Public Sub LoadModal (xOwner as Form)
Me.Show vbModal, xOwner 'Exactly here I could use only Me.Show vbModal?
End Sub
Regards