PDA

Click to See Complete Forum and Search --> : passing information


a80012a
Feb 15th, 2001, 07:40 AM
Hi all.

I want to pass information from one form to another.
Somehow I can't get it done.


Regards,


Ton

Vlatko
Feb 15th, 2001, 12:01 PM
If both Forms are in the same projects(same application) than you can use public variables.

'in form1
Public txt As String
txt = "dgffggh"

'access it from form2
Form1.txt = "odfhf"
'or
form2.caption = Form1.txt