I am displaying a new form using the following code.
How do I refer the calling form from the new form?Code:dim frmMyForm as new Form1
frmMyForm.show()
Printable View
I am displaying a new form using the following code.
How do I refer the calling form from the new form?Code:dim frmMyForm as new Form1
frmMyForm.show()
set the frmMyForm.owner property as ME....then refer to whatever as me.owner.textbox1.text...or whatever....if i understand your question, then that should solve it.
AcE