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 ctl as control
For Each ctl In form.Controls
if ctl.Container is fratest
On error resume next
ctl.Locked = False
On error goto 0
End If
Next
Private Sub Form_Load()
Dim obj As Control
For Each obj In Frame1.Container
Debug.Print obj.Name
Next
End Sub