BackColor
-
Does anybody know if there is a (one command) way to change the BackColor of all controls in a form as well as the form itself? I have an application with several forms and controls and I want to “spruce up” the look a little bit. Thanks Brad
-
Does anybody know if there is a (one command) way to change the BackColor of all controls in a form as well as the form itself? I have an application with several forms and controls and I want to “spruce up” the look a little bit. Thanks Brad
Nope. You'll have to enumerate all the controls on the form and change them, one by one. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
Nope. You'll have to enumerate all the controls on the form and change them, one by one. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
Okay...that's what I was affraid of. Thanks.