SA
Resimde ki gibi eğer text1 in içinde örneğin 1 yazdığında text2 nin içine x yazsın eğer text2 ile text3 eşitse text4 1 yazın eğer eşit değilse text5 1 yazsın
Aynısını VB6 da yapa biliyorum bana bunun html de olanı lazım.
VB6 Kodları:
Private Sub Command1_Click()
If Text2.Text = Text3.Text Then
Text4.Text = Val(Text4.Text) + 1
Else
Text5.Text = Val(Text5.Text) + 1
End If
End Sub
Private Sub Timer1_Timer()
If Text1.Text = "1" Then
Text2.Text = "x"
End If
End Sub