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.
Private Sub Command2_Click()
Dim x As Form
Set x = Form2
x.Show
End Sub
Set fo = rsRpt("rptfo")
Set fo = GetForm(rsRpt("rptfo"))
Public Function GetForm(strName as string) as Form
Dim frmForm as Form
set frmForm = Nothing
For Each frmForm in Forms
if ucase(trim(frmForm.name)) = ucase(trim(strname)) then
set GetForm = frmForm
Exit Function
endif
Next frmForm
End Function
Dim i As Integer
For i = 0 To Forms.Count - 1
If Forms(i).Name = StringFormName Then
Forms(i).Show
End If
Next i