Thank you for the response. I just tried that, but the first userform will not execute the code while the second form is running.
Here is the code I have on that command button:
Private Sub CommandButton1_Click()
Me.Hide
frmTest.Show
Sheets("Material Worksheet").Range("A118").Value = TextBox1.Value
Sheets("Material Worksheet").Range("B118").Value = TextBox2.Value
Sheets("Material Worksheet").Range("C118").Value = TextBox3.Value
Label1.Caption = TextBox1.Value
Label2.Caption = TextBox2.Value
Label3.Caption = TextBox3.Value
CommandButton1.Visible = False
TextBox1.Visible = False
TextBox2.Visible = False
TextBox3.Visible = False
Label1.Visible = True
Label2.Visible = True
Label3.Visible = True
Edit1.Visible = True
del1.Visible = True
Unload frmTest
SendKeys "%{F4}"
Me.Show
End Sub
Bookmarks