View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
ironhydroxide ironhydroxide is offline
external usenet poster
 
Posts: 51
Default Transfering Data From Userform1 to TextBox1 in UserForm2

I Have two Userforms, and i use input from the first userform to find the
information i want to be placed in the second userform (the data is in Cells
on the Active Sheet, and will be Names, or Dates). I have tried a couple
ways, and the helpsearch function doesnt really give information on this.

I figure one uses

`Get My information

Userform1.Hide

Load Userform2

With UserForm2
TextBox1=MyData
End With

UserForm2.Show

`Here is where i want my data to show in the TextBox1 of UserForm2

But when i try this, the data doesnt show on the userForm, What am i doing
wrong?

Thanks for all replies

ironhydroxide