enable keyboad entry

  • Thread starter Thread starter Guest
  • Start date Start date
From the online help files:
---------------------------------------------------------------------------------
Interactive Property

True if Microsoft Excel is in interactive mode; this property is usually True. If you set the
this property to False, Microsoft Excel will block all input from the keyboard and mouse (except
input to dialog boxes that are displayed by your code). Blocking user input will prevent the
user from interfering with the macro as it moves or activates Microsoft Excel objects.
Read/write Boolean.

Remarks
This property is useful if you're using DDE or OLE Automation to communicate with Microsoft
Excel from another application.

If you set this property to False, don't forget to set it back to True. Microsoft Excel won't
automatically set this property back to True when your macro stops running.
---------------------------------------------------------------------------------

If this gets set to false and not reset, I don't know how you'd set it back. Maybe with a
workbook that resets it in its Workbook_Open procedure, which you make on another computer.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Peltier Technical Services
Tutorials and Custom Solutions
http://PeltierTech.com/
_______
 
Back
Top