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.
Set daDoc = frmBrowser.brwWebBrowser.Document
'Don't know why, but the form, field, and control names MUST be enclosed in an extra set
'of parens to force them to evaluate before the statement itself is evaluated.
For X = 1 To UBound(FormFields, 2)
daDoc.Forms((FormName)).elements((FormFields(1, X))).Value = FormFields(2, X)
Next X
daDoc.Forms((FormName)).elements((SubmitButton)).Click