I am wanting to make it so that IF you press the start button and textbox2.text isn't a number from 1-99 ANDALSO listbox1.items <> Nothing THEN a timer will start.
I am not sure how to do this, this is what I have. Don't laugh. :blush: :cry: :( :sick:
And btw... That code doesn't even work. It's what I tried though.
I am not sure how to do this, this is what I have. Don't laugh. :blush: :cry: :( :sick:
Code:
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
If TextBox2.Text <> (1,99) AndAlso ListBox1.Items <> Nothing then
Timer1.Start()
End If
End Sub