Vba - getting value from other userform

A

ajliaks

Hi all,

in Userform1 I have TextBox1
I need to use that value into userform2. How do I call that value fro
Userform2?

something like...
Text= Userform1(TextBox1.value) ???

Thanks,
Aldo
 
B

Bob Phillips

Text= Userform1.TextBox1.Text

Be aware that if Userform1 has been unloaded, the textbox will have been
cleared.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Top