Hi,
I am using the following statement to cycle between tabs in an access form
It all works fine when the form is opened and focus is set to the 1st tab and also when you click any of the other tabs, however, when I click back on the 1st tab, I get the following error.
"Object doesn't suport this property of method."
I can continue clicking on any of my other tabs, except the 1st one. any ideas??
thanks
I am using the following statement to cycle between tabs in an access form
Code:
frm.Controls(TabControlName).Pages(TabPageName).PageIndex = 0
frm.Controls(TabControlName).Pages(TabPageName).SetFocus
It all works fine when the form is opened and focus is set to the 1st tab and also when you click any of the other tabs, however, when I click back on the 1st tab, I get the following error.
"Object doesn't suport this property of method."
I can continue clicking on any of my other tabs, except the 1st one. any ideas??
thanks