Link to home
Start Free TrialLog in
Avatar of MINDSUPERB
MINDSUPERBFlag for Kuwait

asked on

Copy data from a child form within a MDI

I have two forms in a parent MDI. I want to copy the value displayed in Textbox1 of Form1 to Textbox1 of Form2.
By not using MDI, the code Me.Textbox1.Text=Form1.Textbox1.Text worked fine. But when I run the forms using MDI, it did not work.
How do I refer Form1 with a MDI form.

Thanks.

Ed
ASKER CERTIFIED SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of MINDSUPERB

ASKER

Thanks. You give me both: a solution of my problem and a best learning.