Hey people. I am laoding a form2 out of another form1:

[...]
Dim frm_make_media_popup_addpic = New frm_make_media_popup_addpic()
Dim left As Int16, top As Int16
left = Me.Left
top = Me.Top
frm_make_media_popup_addpic.Left = left
frm_make_media_popup_addpic.Top = top
frm_make_media_popup_addpic.ShowDialog()
[...]

not if i press back on the form1 (made by the following simple command

[...]
Me.Close()
[...]

Well so far so good...

But If I now again try to load the form2 out of the form1 I cannot access form2 any more.

(with the same code as I loaded the form2 the first time)

In fact if I use the command

[...]
Me.Show
[...]

In form2 the real form2 appears where I am now able to access it

But... why the hell is form2 still running? or did i sth else wrong?

tom

P.S.: Form2's task is to accept dragged images and display them - won't be the problem i suppose ;)