Thanks, but now i'm getting an error stating that "the value you entered is't valid for this field".
Here is the code I have so far, I don't think I'm doing any thing wrong, but I haven't been working with vb as much as I would like to.
rivate Sub Command4_Click()
On Error GoTo Err_Command4_Click
[Report #] = Text2
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
If MsgBox("Continue entering data", vbYesNo) = vbYes Then
DoCmd.GoToRecord , , acNewRec
Equipment.SetFocus
Else
DoCmd.Close
[Forms]![Record of Weapons]!Save.SetFocus
End If
Exit_Command4_Click:
Exit Sub
Err_Command4_Click:
MsgBox Err.Description
Resume Exit_Command4_Click
End Sub