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] Dim Msg As String, Style As Integer, Title As String
Msg = "YourMessage" & Me!YourField & " MoreText"
Style = vbInformation + vbOKOnly
Title = "Text for the Title Bar"
Call MsgBox Msg, Style, Title[/blue]
[blue] Dim frm As Form
Set frm = Forms![purple]YourMainFormName[/purple]
frm!Customer_ID = Me!Customer_ID[/blue]