Hi how can i using VBa return a value from another form. The form will be hidden. Regards D
D DMc2007 Sep 3, 2008 #1 Hi how can i using VBa return a value from another form. The form will be hidden. Regards D
H Helmut Weber Sep 3, 2008 #2 Hi, Sub Macro8() UserForm1.Show UserForm2.Show ' userform2 is hidden End Sub ' in userform1 Private Sub CommandButton1_Click() MsgBox UserForm2.TextBox1.Text End Sub -- Greetings from Bavaria, Germany Helmut Weber, MVP WordVBA Vista Small Business, Office XP
Hi, Sub Macro8() UserForm1.Show UserForm2.Show ' userform2 is hidden End Sub ' in userform1 Private Sub CommandButton1_Click() MsgBox UserForm2.TextBox1.Text End Sub -- Greetings from Bavaria, Germany Helmut Weber, MVP WordVBA Vista Small Business, Office XP