Private Sub TextBox1_Change()
If Me.TextBox2 <> "" Then
If CInt(Me.TextBox1) < CInt(Me.TextBox2) Then Me.Label1.BackColor = RGB(255, 0, 0)
If CInt(Me.TextBox1.Value) = CInt(Me.TextBox2.Value) Then Me.Label1.BackColor = RGB(0, 255, 0)
If CInt(Me.TextBox1.Value) > CInt(Me.TextBox2.Value) Then Me.Label1.BackColor = RGB(0, 0, 255)
End If
End Sub
Private Sub TextBox2_Change()
If Me.TextBox1 <> "" Then
If CInt(Me.TextBox1) < CInt(Me.TextBox2) Then Me.Label1.BackColor = RGB(255, 0, 0)
If CInt(Me.TextBox1.Value) = CInt(Me.TextBox2.Value) Then Me.Label1.BackColor = RGB(0, 255, 0)
If CInt(Me.TextBox1.Value) > CInt(Me.TextBox2.Value) Then Me.Label1.BackColor = RGB(0, 0, 255)
End If
End Sub