mytaurus2000
Technical User
Does anyone have any good resources regarding coding CollapsiblePanels in VB?
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 Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox3.Visible = Not TextBox3.Visible
TextBox1.Visible = Not TextBox1.Visible
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
TextBox2.Visible = Not TextBox2.Visible
End Sub