Can I assign a color to each tab in a form?

P

Paul Shapiro

It's not exactly what you asked for but you can change the form color, which
includes the tab color, when a user clicks on a tab with an event handler
like the example below.
Private Sub tabSubForm_Change()
Select Case Me![tabSubForm].Value
Case Me![pageContact].PageIndex
Me.Section(0).BackColor = 13434879
Me![subAddress].SetFocus
Case Me![pageAuthor].PageIndex
Me.Section(0).BackColor = 8421440
Case Me![pageReferee].PageIndex
Me.Section(0).BackColor = 16777088
Case Me![pageCorrespondence].PageIndex
Me.Section(0).BackColor = 6697881
Case Me![pageEditor].PageIndex
Me.Section(0).BackColor = 3381555
End Select
End Sub
 
Top