I am assuming that you ar useing the last piece of code I gave you.
in the Oncurrent Event put this
If Me.NewRecord Then
Dim strShaftSN As String
Dim strDate As String
strShaftSN = InputBox("Please enter ShaftSN", "Enter Shaft Serial Number"
[red] If strShaftSN = vbCancel Then
Exit Sub
End If [/color]
While (strShaftSN = ""

strShaftSN = InputBox("Please enter ShaftSN", "Enter Shaft Serial Number"

Wend
Me.ShaftSN= strShaftSN
strDate = InputBox("Please enter date", "Enter Date"
[red] If strDate = vbCancel Then
Exit Sub
End If [/color]
While (strDate = ""

strDate = InputBox("Please enter date", "Enter Date"

Wend
Me.Date = strDate
End If
May want to check the help files But I am pretty sure I have syntax right. Glad the previous code worked for you and I Hope This Helps
Dave