I'm trying to let users change the forecolor of my contextmenu, but not every component has the "ForeColor" property. How to I check for that?
For Each Itom In MyMenu.SubItems
If Itom.HasProperty("ForeColor") then '<<< This doesn't work.
Itom.ForeColor = MyColor
End If
Next
I also need to be...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.