01-23-2009 11:27 AM
As best I can tell, you can change colors of individual pages in a Tab Control manually (if you have the Allow Multiple Colors property set True), but you can't do so programmatically.
For my particular application there is only one page color I need to change, so I can get the effect by setting up the colors I want manually and toggling Allow Multiple Colors on the Tab Control as needed, but I'm wondering if there is a better solution out there.
Thanks,
Kyle
Solved! Go to Solution.
01-23-2009 11:40 AM - edited 01-23-2009 11:41 AM
Sure you can:
Not sure whether you're trying to change the background or foreground color.
01-23-2009 11:42 AM
Kyle
You can programmatically change the individual page colors.
First get the pages references, select the page you want to change then using the page color property change the color.
01-23-2009 11:48 AM
Thank you both. I hadn't known how to pull out individual page references. D'oh.
Kyle