Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
This saids the code you've posted in running in the very button you wish to disable! . . . [blue]It all fits like a glove![/blue]MicrosoftError2164 said:[blue]You can't disable a control while it has the focus[/blue]
Private Sub cmdDisable_Click()
Text1.SetFocus
cmdDisable.Enabled = False
End Sub