J
Jerry Spence1
I have the following which generates MDI forms, but doesn't show them at
this stage:
For n As Integer = 1 To 10
fmViewer(n) = New frmViewer
fmViewer(n).Tag = n
fmViewer(n).MdiParent = Frm1
Next
From within a new thread I wish to show a form:
fmViewer(4).show
However, it doesn't show. The answer I am sure is because I am trying to
show it from within a thread. How can I achieve this?
-Jerry
this stage:
For n As Integer = 1 To 10
fmViewer(n) = New frmViewer
fmViewer(n).Tag = n
fmViewer(n).MdiParent = Frm1
Next
From within a new thread I wish to show a form:
fmViewer(4).show
However, it doesn't show. The answer I am sure is because I am trying to
show it from within a thread. How can I achieve this?
-Jerry