in vb.net we can show the child form as:

dim frm as new childform1
frm.show

but if we call these line more than one then it will creates a another instance on childform....

how can we stop user to create more than 1 instance of a form...meanz only one form will exist

anand