Tab Change Control

  • Thread starter Thread starter Crystal
  • Start date Start date
C

Crystal

Hello Allen,

I did try using the Tab Change control with the same
results. It hides the text boxes but when you click on
the tabs to view another page they do not re-appear as I
wish them to.

Thanks
Crystal
-----Original Message-----
Use the Change event of the tab control.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to the newsgroup. (Email address has spurious "_SpamTrap")




.
..
 
I did answer, suggesting:

Dim bShow As Boolean

bShow = Not (Me.TabCtl38.Value = Me.Reports.PageIndex)
If Me.GFX_ID_Label.Visible = <> bShow Then
Me.GFX_ID_Label.Visible = bShow
End If
 
ThanksSOO Much!!!



-----Original Message-----
I did answer, suggesting:

Dim bShow As Boolean

bShow = Not (Me.TabCtl38.Value = Me.Reports.PageIndex)
If Me.GFX_ID_Label.Visible = <> bShow Then
Me.GFX_ID_Label.Visible = bShow
End If


--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to the newsgroup. (Email address has spurious "_SpamTrap")



.
 
Back
Top