change fore color of tab name

  • Thread starter Thread starter Louis
  • Start date Start date
L

Louis

I have serval tab controls in a form. How can I changes
the fore color of tab name when it was clicked or make it
standout ?

Thank a lot.
Louis
 
Louis,

As far as I know, this is not possible directly within Access. You may
find some interest at http://www.lebans.com/tabcolors.htm. Another
approach is this... Set the Style property of the Tab Control to None.
Then, place an Option Group on the form, and add Toggle Buttons to the
Option Group, one for each page of the tab control. Then you can use a
vba procedure on the AfterUpdate event of the OptionGroup, using
SetFocus to move to the required page on the tab control, plus any
formatting to change the font weight or forecolor or whatever of the
toggle buttons within the option group.
 
Back
Top