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.
'in the calling form
DoCmd.OpenForm "frmCheckout",,,,,,,,,,,& intMovieID
DoCmd.Close acForm, Me.Name, acSaveNo
'in the frmCheckout's Open() event
If Nz(Me.OpenArgs) = "" Then
msgbox "ERR"
Cancel = True
Else
Me.RecordSource = "SELECT * FROM MOVIES WHERE " & Me.OpenArgs
--
Find common answers using Google Groups:
[URL unfurl="true"]http://groups.google.com/groups?group=comp.databases.ms-access[/URL]
Corrupt MDBs FAQ
[URL unfurl="true"]http://www.granite.ab.ca/access/corruptmdbs.htm[/URL]
'in the calling form
DoCmd.OpenForm "frmCheckout",,,,,,,,,,,"MovieID=" & intMovieID
DoCmd.Close acForm, Me.Name, acSaveNo
'in the frmCheckout's Open() event
If Nz(Me.OpenArgs) = "" Then
msgbox "ERR"
Cancel = True
Else
Me.RecordSource = "SELECT * FROM MOVIES WHERE " & Me.OpenArgs