开发者

ms-access: check if font color is white

开发者 https://www.devze.com 2023-01-06 19:39 出处:网络
in开发者_如何学Go conditional formatting what would be the expression i would use to check whether a DIFFERENT textbox\'s font color is set to white?With VBA, you can check whether a control\'s ForeCo

in开发者_如何学Go conditional formatting what would be the expression i would use to check whether a DIFFERENT textbox's font color is set to white?


With VBA, you can check whether a control's ForeColor property is white (vbWhite = 16777215).

If Me!SomeControl.Properties("ForeColor") = 16777215 Then

However, I'm lost trying to figure out how to apply that approach in conditional formatting.

0

精彩评论

暂无评论...
验证码 换一张
取 消