Ctrl+break

DJ100

Registered User.
Local time
Today, 03:21
Joined
Jul 4, 2002
Messages
34
Hi,

I have written a stock management system in EXCEL (will be migrating it to SQL Server eventually) but one of my users keeps using CTRL+BREAK to break in and make changes to the spreadsheet - then these changes aren't logged - the whole reason for making it form based in the first place - is there any way to disable this function.
 
Hi, DJ100,

if you have tested your application more than thoroughly - have a look at EnableCancelKey in the object catalogue / VBA help:

Code:
Application.EnableCancelKey = xlDisabled
Ciao,
Holger
 
Thank you . . . works a treat
 

Users who are viewing this thread

Back
Top Bottom