I want to hide a control with a one command button. When the user click the button the control is invisible, when they click the button again it reappears. How can I do this???<br><br>Thanks for the help!!!!!!!!!!!!!!!!!!!
here is an example from canned Access data base<br><br>If Me![Toggle View].Caption = "&View Expenses" Then<br> Me![Print Invoice Time Subform].Visible = False<br> Me![Print Invoice Expenses Subform].Visible = True<br> Me![Toggle View].Caption = "&View Hours"<br> Else<br> Me![Print Invoice Expenses Subform].Visible = False<br> Me![Print Invoice Time Subform].Visible = True<br> Me![Toggle View].C
cut off last line sorry<br> Me![Toggle View].Caption = "&View Expenses"<br> End If
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.