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.
[blue] Me.[purple][b]UnboundTextboxName[/b][/purple] = Me.CurrentRecord[/blue]
Dim strWhere as String
strWhere = "[PrimaryKeyFieldName] = " & [PrimaryKeyFieldName]
DoCmd.OpenForm "frmYourFormName", , , strWhere
Why not use the double-click or a command button rather than a check box?dhookom said:not sure I care for using a check box for this
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdDeleteRecord