I have learn today that using the method .ShowDialog() to open a new form, it will not allow to user (until the new form be closed) to "use" this form but I tried do it and this form still can be "usable".
The form that open the new one is my startup object. What did I do wrong?
Start-up object: Form
Form to be open: AddQuestion
At Form I have:
Private Sub ButtonX5_Click(sender As Object, e As EventArgs) Handles ButtonX5.Click
AddQuestion.ShowDialog(Me)
End Sub
Try this: