AlanJordan
Programmer
I have a page that is filled with controls.
I want to prevent a user from using them until they select their name from a combo box and enter a password.
I decided to place a tab control over the controls and make the tab control invisible when a user takes the above actions.
This works fine, until I attempt to shrink the size of tab control and resize and reposition it with this code.
This code repositions the tab control at the very top of the page, preventing the user from using the combo box.
Questions, please:
(1) Should I be using an other method, like the move method? If so, what's the syntax?
(2) Is there a better way to accomplish my goals. I guess I could disable every control on form except the combo box. If so, could you suggest the code to do this quickly?
Thanks in advance,
Alan
I want to prevent a user from using them until they select their name from a combo box and enter a password.
I decided to place a tab control over the controls and make the tab control invisible when a user takes the above actions.
This works fine, until I attempt to shrink the size of tab control and resize and reposition it with this code.
Code:
With Me.tabInstructions
.Top = 6.875
.Left = 0
.Width = 8.6979
.Height = 6.1771
.Visible = True
End With
Questions, please:
(1) Should I be using an other method, like the move method? If so, what's the syntax?
(2) Is there a better way to accomplish my goals. I guess I could disable every control on form except the combo box. If so, could you suggest the code to do this quickly?
Thanks in advance,
Alan