XL2000: How to Programmatically Disable Keyboard Functionality (213509)



The information in this article applies to:

  • Microsoft Excel 2000

This article was previously published under Q213509

SUMMARY

In Microsoft Excel, you can programmatically disable all of the keys on the computer keyboard by setting the Microsoft Visual Basic for Applications DataEntryMode property to xlOff.

A sample Visual Basic macro that you can use to turn off the keyboard is provided in the "More Information" section.

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact a Microsoft Certified Partner or the Microsoft fee-based consulting line at (800) 936-5200. For more information about Microsoft Certified Partners, please visit the following Microsoft Web site: For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site: The following sample macro turns off keyboard functionality for the active sheet only. To turn keyboard functionality back on, press CTRL+D.

To create this macro, follow these steps:
  1. Start Excel.
  2. Press ALT+F11 to start the Visual Basic Editor.
  3. On the Insert menu, click Module.
  4. Type the following code into the module sheet:
    ' Macro to turn off keyboard entry.
    Sub KeyboardOff()
       ' Sets CTRL+D to activate KeyboardOn.
       Application.OnKey "^d", "KeyboardOn"
       Application.DataEntryMode = True
    End Sub
    
    ' Macro to restore keyboard entry.
    Sub KeyboardOn()
       Application.DataEntryMode = False
    End Sub
    					
  5. Press ALT+F11 to return to Excel.
  6. On the Tools menu, point to Macro, and then click Macros.
  7. Click KeyboardOff, and then click Run.

    Note that the keyboard does not respond.
  8. Press CTRL+D.

    Note that the keyboard functions as expected.

REFERENCES

For more information about the DataEntryMode property, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type dataentrymode property in the Office Assistant or the Answer Wizard, and then click Search to view the topic.

Modification Type:MinorLast Reviewed:10/11/2006
Keywords:kbdtacode kbhowto kbinfo kbProgramming KB213509