S
SF
Hi,
In my report, I have several negative number. I want to highlight the
negative number to Red by using the following code.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.txtNoRecord < 0 Then
Me.txtNoRecord.BackColor = 255
End If
I did not get result as expected.
SF
In my report, I have several negative number. I want to highlight the
negative number to Red by using the following code.
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
If Me.txtNoRecord < 0 Then
Me.txtNoRecord.BackColor = 255
End If
I did not get result as expected.
SF