Only One Window per event

  • Thread starter Thread starter Manuel
  • Start date Start date
M

Manuel

Hello,

I have a form which opens a window when I click a button
on it.

However, this window will open as many times as I click
the button.

How can I prevent this user-controllable memory excess-
usage danger?

Thanks,

Manuel
 
Hello,

Manuel said:
I have a form which opens a window when I click a button
on it.

However, this window will open as many times as I click
the button.

How can I prevent this user-controllable memory excess-
usage danger?

\\\
Dim f As New FormX()
f.ShowDialog(Me)
///

Regards,
Herfried K. Wagner
 
Back
Top