So I've encountered 2 new errors while trying to run my User Form in Word 2007. The first is "Run-time Error 424 - Object Required" after clicking the Clear command button. The debugger is pointing to the fifth line of code for "txtTest3." If I remove that line, the debugger highlights "End Sub."

Private Sub cmdClear_Click()
txtUserName.Value = Null
txtTest1.Value = Null
txtTest2.Value = Null
txtTest3.Value = Null
End Sub

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

The second one says "Compile Error - Invlaid Qualifier." The debugger points to the first line in the code in reference to my submit command button after clicking the submit button:

Private Sub cmdSubmit_Click()
With ActiveDocument
.FormFields("Text1").Result.Text = txtUserName.Value
.FormFields("Text2").Result.Text = txtTest1.Value
.FormFields("Text3").Result.Text = txtTest2.Value
.FormFields("Text4").Result.Text = txtTest1.Value
End With
Application.ScreenUpdating = True
Unload Me
End Sub

Any help would be greatly appreciated.