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] DoCmd.OpenForm "[purple][b]FormName[/b][/purple]", acNormal, , , acFormAdd[/blue]
[blue] Dim frm As Form
Set frm = Forms![purple][b]IndependentFormName[/b][/purple]
Me![purple][b]ControlName[/b][/purple] = frm![purple][b]ControlName[/b][/purple]
[green][b]'[/b][/green]
[green][b]'[/b][/green]
Me![purple][b]ControlName[/b][/purple] = frm![purple][b]ControlName[/b][/purple]
DoCmd.RunCommand acCmdSaveRecord
Set frm = Nothing[/blue]