R
Robert Crandal
My code so far looks like this:
'---------------------------------------------------
Sub DoStuff ()
Dim first_name as String
Dim last_name as String
UserForm.Show ' Show form with text boxes
' what goes here?
End Sub
'-------------------------------------------------
The code that shows the userform causes a
userform to be displayed which allows a user to
enter text into Textbox1 and/or Textbox2.
Once a user enters text into either textbox and
closes out the Userform, is it possible to get
the values from the textboxes and store them
in the string variables above in the DoStuff()
subroutine??
Thank you!
Robert
'---------------------------------------------------
Sub DoStuff ()
Dim first_name as String
Dim last_name as String
UserForm.Show ' Show form with text boxes
' what goes here?
End Sub
'-------------------------------------------------
The code that shows the userform causes a
userform to be displayed which allows a user to
enter text into Textbox1 and/or Textbox2.
Once a user enters text into either textbox and
closes out the Userform, is it possible to get
the values from the textboxes and store them
in the string variables above in the DoStuff()
subroutine??
Thank you!
Robert