T
Tony C
For each condition, use the Syntax
If Me.UMID = 1 Then Goto Err_PartNumber_Click
Rather than using "ElseIf".
Remove the "Resume" Statement, it is not needed here.
To split text for a message box over multiple lines, try
the syntax
MsgBox("This is line 01." & chr(13) & "This is line 02.")
HTH
Tony C.
If Me.UMID = 1 Then Goto Err_PartNumber_Click
Rather than using "ElseIf".
Remove the "Resume" Statement, it is not needed here.
To split text for a message box over multiple lines, try
the syntax
MsgBox("This is line 01." & chr(13) & "This is line 02.")
HTH
Tony C.