-
Halt instructions?
Good afternoon,
I am probably missing a simple solution to this problem, but here it goes anyway: (I am using VB6)
I have created a custom form to act like a MsgBox with custom buttons. When I form.show I need the current form to halt all instructions until the user has selected an answer on the "MsgBox" form. Any ideas?
-
Re: Halt instructions?
-
Re: Halt instructions?
Just look the following code.When you do the following code .you even don't minimize the form1.means owner form.
Code:
Private Sub Command1_Click()
Form2.Show vbModal, Me
End Sub