Hide tabs on a form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I want to be able to hide tabs on a form based on information in a table. Ie tab is called other reports if a field in a table that is not bound is set to "Canada" then show the tab, If it is "US" dont't show the tab.
 
You could try this in the form´s current event:

If Me.NameOnControlHoldingCountry = "Canada" Then
Me.NameOnYourTabToHide.Visible = False
End If


Gordon reed said:
I want to be able to hide tabs on a form based on information in a table.
Ie tab is called other reports if a field in a table that is not bound is
set to "Canada" then show the tab, If it is "US" dont't show the tab.
 
Back
Top