Here's my project design:
___________ _________
I COMBO 1 I I COMBO 2 I
-------------------- ----------------- I had choice of 1minute and 2minute
-----------------------------------------------
I The quick brown fox I
I jumps over the lazy dog. I
I----------------------------------------------I
-----------------------------------------------
I This is were you text the words I
I in the list box I
I-------------------------------------------------I
If you want to click the 1minute the timer should be stop and it cna view.
Private Sub Combo2_Change()
Private Sub Combo2_Click()
If Combo2.ListInde x = 1 Then
Timer1.Interval = 60000
If Combo2.ListInde x = 2 Then
Timer1.Interval = 120000
End If
End Sub
Private Sub Combo2_Click()
If Combo2.ListInde x = 0 Then
Timer1.Interval = 60000
Else
Timer1.Interval = 120000
End If
End Sub
My code is this:
Can you help me to arrange this code?
___________ _________
I COMBO 1 I I COMBO 2 I
-------------------- ----------------- I had choice of 1minute and 2minute
-----------------------------------------------
I The quick brown fox I
I jumps over the lazy dog. I
I----------------------------------------------I
-----------------------------------------------
I This is were you text the words I
I in the list box I
I-------------------------------------------------I
If you want to click the 1minute the timer should be stop and it cna view.
Private Sub Combo2_Change()
Private Sub Combo2_Click()
If Combo2.ListInde x = 1 Then
Timer1.Interval = 60000
If Combo2.ListInde x = 2 Then
Timer1.Interval = 120000
End If
End Sub
Private Sub Combo2_Click()
If Combo2.ListInde x = 0 Then
Timer1.Interval = 60000
Else
Timer1.Interval = 120000
End If
End Sub
My code is this:
Can you help me to arrange this code?
Comment