J
Jason
Hi,
How can i conditional format a contineous form in code?
I've tried the following but no result. I probably did something wrong.
With Form_MySubForm
.DataEntry = False
.Detail.Visible = True
.UniqueTable = "MySqlTable"
With .MyTextbox
.FormatConditions.add acFieldValue, acEqual, "=0"
.BackColor = vbRed
End With
End With
How can i conditional format a contineous form in code?
I've tried the following but no result. I probably did something wrong.
With Form_MySubForm
.DataEntry = False
.Detail.Visible = True
.UniqueTable = "MySqlTable"
With .MyTextbox
.FormatConditions.add acFieldValue, acEqual, "=0"
.BackColor = vbRed
End With
End With