UnsolvedCoding
Technical User
I was talking with some of my co-workers about how to keep people from making mistakes while certain parts of code run and several suggestions came up that I am curious about.
There were two specific that I wanted to get feed back on because of the limited number of times they would be used and because of concerns about errors occuring.
These concerns were specifically brought up because people will start the Excel program and rather then waiting for it to finish will switch to other applications. For example, start Excel and then flip to Outlook.
The options that came up are:
- lock out the keyboard during some procedures.
- disable the bulk of the keys on the keyboard, leaving only the escape key functional.
To me, these are both answers and problems.
What would be the general thinking on how to limit errors due to user input while the code is running?
There were two specific that I wanted to get feed back on because of the limited number of times they would be used and because of concerns about errors occuring.
These concerns were specifically brought up because people will start the Excel program and rather then waiting for it to finish will switch to other applications. For example, start Excel and then flip to Outlook.
The options that came up are:
- lock out the keyboard during some procedures.
- disable the bulk of the keys on the keyboard, leaving only the escape key functional.
To me, these are both answers and problems.
What would be the general thinking on how to limit errors due to user input while the code is running?