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 Combo0_AfterUpdate()
Dim strCombo as String
strCombo = Combo0
Select Case strCombo
Case "Test"
txtTest.Visible = True
txtText1.Visible = False
txtText2.Visible = False
txtText3.Visible = False
Case "Test1"
txtTest.Visible = False
txtText1.Visible = True
txtText2.Visible = False
txtText3.Visible = False
Case "Test2"
txtTest.Visible = False
txtText1.Visible = False
txtText2.Visible = True
txtText3.Visible = False
Case "Test3"
txtTest.Visible = False
txtText1.Visible = False
txtText2.Visible = False
txtText3.Visible = True
End Select
End Sub