Is there a way in Access 97 to show pages in a tab control that do not have the focus as enabled = false? I have tried the following:
1. disable the entire tab control & change the on click event of the "active" tab to change that page's property of enabled to active. No click events are available when the enabled property for the tab control is active. - doesn't work
2. Set the picture on each page to the windows check mark. Set the on change of the tab control with the following code:
Dim intPageIndex as integer
Dim pge as Page
intPageIndex - Val(Forms![tab testing]!tab)
For each pge in Me!tab.Pages
If pge.PageIndex = intPageIndex then
Me.Picture = Me!tab!Page1.picture
'When the above code executes I get the error "Microsoft Access can't open the file '(bitmap)'."
Else
pge.Picture = ""
End If
Next pge
Overall effect: When you click on X Page in Tab Control I want X Page to Show as "[check mark] Page 1" and the rest of the Pages to show as "Page 2", "Page 3", etc.
Any help would make me -
- dance with Joy!
Thanks,
SATHandle
1. disable the entire tab control & change the on click event of the "active" tab to change that page's property of enabled to active. No click events are available when the enabled property for the tab control is active. - doesn't work
2. Set the picture on each page to the windows check mark. Set the on change of the tab control with the following code:
Dim intPageIndex as integer
Dim pge as Page
intPageIndex - Val(Forms![tab testing]!tab)
For each pge in Me!tab.Pages
If pge.PageIndex = intPageIndex then
Me.Picture = Me!tab!Page1.picture
'When the above code executes I get the error "Microsoft Access can't open the file '(bitmap)'."
Else
pge.Picture = ""
End If
Next pge
Overall effect: When you click on X Page in Tab Control I want X Page to Show as "[check mark] Page 1" and the rest of the Pages to show as "Page 2", "Page 3", etc.
Any help would make me -
![[elephant2] [elephant2] [elephant2]](/data/assets/smilies/elephant2.gif)
Thanks,
SATHandle