I cannot figure out how to make the following words: “You cannot leave this record blank!” appear as a bold heading using the @ symbol.
Private Sub Form_Error(DataErr As Integer, Response As Integer)
If DataErr = 3058 Then
MsgBox “You cannot leave this record blank!” & vbCrLf & _
“To correct this error:” & vbCrLf & ” (1) Type a value (any value) into the record.” _
& vbCrLf & ” (2) Mouse click on the record selector to the left of the record.” & vbCrLf & _
” (3) Press the Delete Key.”, vbExclamation
Response = acDataErrContinue
End If
End Sub
As an alternative, is it possible to automate deletion of the referenced record?
Thank you,
Ron