Alcar,
Thanks again for the info.
Here's what I ended up with, but it is giving me some errors, and highlights SET...
(btw, is "my" in your example supposed to be used for something?)
Private Sub Save_Click()
strSql = "INSERT INTO tblEvents-NotOwner " & _
SET FollowupDate = #" & calendar1.value & "#
connObj.Execute (strSQL)
On Error GoTo Err_Save_Click
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
Exit_Save_Click:
Exit Sub
Err_Save_Click:
MsgBox Err.Description
Resume Exit_Save_Click
End Sub