G
Guest
Hi, everyone, I have a form with a TextBox to display my calculation result and CmdButton and something else. How can I let the calculation result display in different color and blink according to different criteria? The followinf codes are in my CmdButton.
Dim intTest As Integer
..
Calculutaion process
..
If intTest = 0 Then
Display intTest in blue
Else
Display intTest in red and blink
End IF
Me![TextBox] = intTest
End Sub
Thanks in advance
Dim intTest As Integer
..
Calculutaion process
..
If intTest = 0 Then
Display intTest in blue
Else
Display intTest in red and blink
End IF
Me![TextBox] = intTest
End Sub
Thanks in advance