I want to create a highlighted effect behind my check boxes, to do that I added a bunch of boxes behind them, then added a line of code to check if the checkbox was true and change the box color as needed.
The issue is that it changes the entire colume of my continuous form when I only want it to effect the single record.
ProductReturned is the checkbox.
BoxProductReturned is the box behind it.
The issue is that it changes the entire colume of my continuous form when I only want it to effect the single record.
Code:
If ProductReturned = True Then BoxProductReturned.BackColor = vbRed
ProductReturned is the checkbox.
BoxProductReturned is the box behind it.