View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Leith Ross[_238_] Leith Ross[_238_] is offline
external usenet poster
 
Posts: 1
Default Help with my user form


Hello jnasr00,

The code for the Submit button will be placed in the Click_Event() by
default. So the code would look something like this...

Code:
--------------------

Sub Submit Click_Event()

Dim Var1 'Variable 1
Dim Var2 'Variable 2
Dim Var3 'Variable 3

Var1 = TextBox1.Text
Var2 = TextBox2.Text
Var3 = TextBox3.Text

End Sub

--------------------

Sincerely,
Leith Ross


--
Leith Ross
------------------------------------------------------------------------
Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465
View this thread: http://www.excelforum.com/showthread...hreadid=483037