R reidarT Jul 7, 2006 #1 How can I open a form from another form with textfields containing data from the first form. Like openargs in Access reidarT
How can I open a form from another form with textfields containing data from the first form. Like openargs in Access reidarT
G Guest Jul 9, 2006 #2 reidarT said: How can I open a form from another form with textfields containing data from the first form. Like openargs in Access reidarT Click to expand... You could overload the constructor to your form so when you Dim form as new Form(parameters) you can pass values. Or you could create public properties on the form you are opening and pass the values in when showing it. Dim _form as new Form _form.Property1 = "hello" _form.Property2 = "Goodbye" _form.show()
reidarT said: How can I open a form from another form with textfields containing data from the first form. Like openargs in Access reidarT Click to expand... You could overload the constructor to your form so when you Dim form as new Form(parameters) you can pass values. Or you could create public properties on the form you are opening and pass the values in when showing it. Dim _form as new Form _form.Property1 = "hello" _form.Property2 = "Goodbye" _form.show()