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 txt_Status_AfterUpdate()
If Me.txt_Status = "open" Then
Me.YourTabControl.Enabled = True
Else
Me.YourTabControl.Enabled = False
End If
End Sub
Private Sub Form_Current()
If Me.txt_Status = "open" Then
Me.YourTabControl.Enabled = True
Else
Me.YourTabControl.Enabled = False
End If
End Sub