I have a maintenance button on a form that I want to be visible/invisible based on user-level security access. However for testing purposes in the form_load I set the button to be invisible, but it is still visible. Here is the code:
Private Sub Form_Open(Cancel As Integer)
Me.btnMaintenance.Visible = False
End Sub
any ideas?
Private Sub Form_Open(Cancel As Integer)
Me.btnMaintenance.Visible = False
End Sub
any ideas?