Hello all
i am using this code to change the font color to red color if ( Textbox3.value < textbox22.value ) see the code below please ...
Private Sub TextBox3_Change()
If TextBox3.Value < TextBox22.Value Then
TextBox3.ForeColor = RGB(0, 0, 0)
Else
TextBox3.ForeColor =...