I KEEP GETTING THIS ERROR
ListBox1 clear undeclared
please kindly look through my coding.
Private Sub Button6_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles Button6.Click
Dim X As Integer
Dim Y As Integer
Dim multiplication As Integer
X = CInt(TextBox1.T ext)
Y = CInt(TextBox2.T ext)
For X = 1 To 12
multiplication = X * Y
ListBox1.Items. Add(X & "X" & Y & "=" & multiplication)
Next
End Sub
End Class
ListBox1 clear undeclared
please kindly look through my coding.
Private Sub Button6_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles Button6.Click
Dim X As Integer
Dim Y As Integer
Dim multiplication As Integer
X = CInt(TextBox1.T ext)
Y = CInt(TextBox2.T ext)
For X = 1 To 12
multiplication = X * Y
ListBox1.Items. Add(X & "X" & Y & "=" & multiplication)
Next
End Sub
End Class
Comment