Code
Code
Dim sapi
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Handles Button1.Click
Button1.Text += 1
TextBox1.Text = ""
TextBox2.Text = ""
CheckBox1.Checked = False
CheckBox2.Checked = False
CheckBox3.Checked = False
CheckBox4.Checked = False
CheckBox1.Visible = True
CheckBox2.Visible = True
CheckBox3.Visible = True
CheckBox4.Visible = True
If Button1.Text = 1 Then
Call question1()
Button1.Enabled = False
End If
If Button1.Text = 2 Then
Call question2()
Button1.Enabled = False
End If
If Button1.Text = 3 Then
Call question3()
Button1.Enabled = False
End If
If Button1.Text = 4 Then
Call question4()
Button1.Enabled = False
End If
If Button1.Text = 5 Then
Call question5()
Button1.Enabled = False
End If
If Button1.Text = 6 Then
Call question6()
Button1.Enabled = False
End If
If Button1.Text = 7 Then
Call question7()
Button1.Enabled = False
End If
If Button1.Text = 8 Then
Call question8()
Button1.Enabled = False
End If
If Button1.Text = 9 Then
Call question9()
Button1.Enabled = False
End If
If Button1.Text = 10 Then
Call question10()
Button1.Enabled = False
End If
If Button1.Text = 11 Then
Call question11()
Button1.Enabled = False
End If
If Button1.Text = 12 Then
Call question12()
Button1.Enabled = False
End If
If Button1.Text = 13 Then
Call question13()
Button1.Enabled = False
End If
If Button1.Text = 14 Then
Call question14()
Button1.Enabled = False
End If
If Button1.Text = 15 Then
Call question15()
Button1.Enabled = False
End If
End Sub
End Sub