I'm using the following code to show a form:

VB Code:
  1. Dim frm As New Form1()
  2. frm.Show()
How to not duplicate this form? Instead, I'd like to show the opened one.


Thanks.