Command Button Enabled

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

Guest

Is there a easy way to set a Command button to be disenabled once it has been
clicked on and keep it that way until a text box or combo box has been
updated? I can set the cmButton.enabled = False. But how would you keep it
like that till the text box is updated?
 
On the After Update event of the text box you can set the button enabled state

Me.[ButtonNAme].Enabled = Not IsNull(Me.[TextBoxName])
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top