Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
And just how are you trying to save the record?grmman said:[blue]But when I go and try to save the new record I get an runtime error 30014.[/blue]
Private Sub cmdsave_Click()
Dim strvisitid As Integer
On Error GoTo Err_cmdsave_Click
If (newflag) Then
Let strvisitid = GetId(enumVisit)
Let Me.visit_id = strvisitid
Me.ServerFilter = ""
Me.Filter = ""
End If
'Call DoCmd.RunCommand(acCmdSaveRecord)
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
DoCmd.Close
Exit_cmdsave_Click:
Exit Sub
Err_cmdsave_Click:
If (Err.Number <> "30014") Then
MsgBox Err.Description
Else
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
DoCmd.Close
End If
Resume Exit_cmdsave_Click
End Sub