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 oControl As Control
For Each oControl In Me.Controls
If oControl.Container.Name = YourName.Name Then
If oControl.Visible Then
Debug.Print oControl.Name
End If
End If
Next
Dim oControl As Control
For Each oControl In Me.Controls
If oControl.Container.Name = fraSearch.Name Then
If oControl.Visible Then
Debug.Print oControl.Name
End If
End If
Next
On Error GoTo NoContainer
For Each oControl In Me.Controls
If oControl.Container.Name = fraSearch.Name Then
If oControl.Visible Then
Debug.Print oControl.Name
End If
End If
NoContainer:
Next