sfarfasrew
Programmer
Is there a way that I can disable the Start button while the program is running but still detect when the Start button is being pressed (so I can give a message saying please dont press the start button)?
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.
if (DisableFlag) then
MsgBox("Please don't press the Start button", vbOkOnly, "Error")
else
' Do your normal code here
endif
However, someone could be writing a 'kiosk' application. For example, imagine if every Automated Teller Machine ran Windows XP and you were responsible for writing the software for it. I'd think you would try pretty hard to disable the start button.