G
Guest
I'm looking for a way to bring an open form to the top. I know that is I
open a form directly with form1.show() and then later, while the form is open
I do another form1.show(), that I will get original form to pop to the top.
But because I want to have multiple instances of form1 open, I open it with
dim frm as new form1
frm.show()
What I need to do now is reference the opened form from another window and
even pop it to the top if I want to. I've seen that I can capture
frm.Handle. If frm.Handle is 1234;
1) Can I
frm.handle(1234).show()
or
2) Can I
frm.handle(1234).textbox1.text = "Hello"
Thanks
open a form directly with form1.show() and then later, while the form is open
I do another form1.show(), that I will get original form to pop to the top.
But because I want to have multiple instances of form1 open, I open it with
dim frm as new form1
frm.show()
What I need to do now is reference the opened form from another window and
even pop it to the top if I want to. I've seen that I can capture
frm.Handle. If frm.Handle is 1234;
1) Can I
frm.handle(1234).show()
or
2) Can I
frm.handle(1234).textbox1.text = "Hello"
Thanks