Okay, I know I brought this upon myself, but I need to fix it and I don't know how. A couple weeks ago, I was playing around with the ability to disable the ctrl break command from working in access. Well, ever since I did it, my porgrams will no longer stop execution and tell me where an error is -- they just don't execute.
Now, this is what I wanted...except I accidentally used it on one of my other databases that I am still working on without knowing that I didn't know how to disable it
. I'm not exactly sure which command I used to disable the control break, but it was either
Application.EnableCancelKey = wdCancelDisabled
or
ChangeProperty "EnableCancelKey", 1, True
Now I've tried both using enablecancelkey = wdcancelinterrupt and changeproperty to false but neither seem to work. Is there a specific time in my code that I am suppose to use these methods? Like say right before I close the db or right when I open? Thanks.
Now, this is what I wanted...except I accidentally used it on one of my other databases that I am still working on without knowing that I didn't know how to disable it
Application.EnableCancelKey = wdCancelDisabled
or
ChangeProperty "EnableCancelKey", 1, True
Now I've tried both using enablecancelkey = wdcancelinterrupt and changeproperty to false but neither seem to work. Is there a specific time in my code that I am suppose to use these methods? Like say right before I close the db or right when I open? Thanks.