Hi all.
I want to pass information from one form to another.
Somehow I can't get it done.
Regards,
Ton
Printable View
Hi all.
I want to pass information from one form to another.
Somehow I can't get it done.
Regards,
Ton
If both Forms are in the same projects(same application) than you can use public variables.
Code:'in form1
Public txt As String
txt = "dgffggh"
'access it from form2
Form1.txt = "odfhf"
'or
form2.caption = Form1.txt