Reggaefloww
Programmer
Hi guys,
I need help hiding all subform controls when a form opens
Thanks
I need help hiding all subform controls when a form opens
Thanks
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 Form_Open(Cancel As Integer)
Dim myCntrl As Access.Control
For Each myCntrl In Me.mySubform.Controls
If myCntrl.ControlType = acTextBox Then
myCntrl.ColumnHidden = False
End If
Next myCntrl
End Sub