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.
Dim fnd As AccpacFinder.ViewFinder
Set fnd = New AccpacFinder.ViewFinder
fnd.Session = AccpacSession
fnd.ViewID = "IC0310"
fnd.DisplayFieldIDs = Array(1, 7, 3, 5) 'Get the field IDs from the AOM
fnd.ReturnFieldIDs = Array(7, 3)
'fnd.Filter = ""
fnd.InitKeyType = USER_PASSING_INIT_KEY
fnd.InitKeyValue = txtItem.Text
fnd.AutoTabAway = False
If fnd.Finder = True Then
txtItem.SetFocus
txtItem.Text = fnd.ReturnFieldValues(0)
lblDesc.Caption = " " & fnd.ReturnFieldValues(1)
End If