Good day developers,
I just want to ask if it is possible, once I clicked a button, it appearing the new windows form only once, because as of now it works for me but when I clicked a button many times it appear the windows form multiple times. Is that possible? (Sorry for my english :D)
This is my code:
Private Sub Button_ItemClick(sender As Object, e As ItemClickEventArgs) Handles Button.ItemClick
Dim newForm As New MyForm
newForm.Show()
End Sub