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 Microsoft Advisory Services. For more information, visit these Microsoft Web sites:
Microsoft Certified Partners -
https://partner.microsoft.com/global/30000104Microsoft Advisory Services -
http://support.microsoft.com/gp/advisoryserviceFor more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMSSample Macro Code
- Save and close any open workbooks, and then open a new workbook.
- Start the Visual Basic Editor (press ALT+F11).
- On the Insert menu, click UserForm.
- Add a command button to the UserForm.
- Double-click the command button to display the Code window behind the UserForm.
- Enter the following code for the MouseDown event for the command button:
Private Sub CommandButton1_MouseDown(ByVal Button As Integer, _
ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
Select Case Shift
Case 0
MsgBox "No key pressed"
Case 1
MsgBox "SHIFT key pressed"
Case 2
MsgBox "CTRL key pressed"
Case 3
MsgBox "CTRL and SHIFT keys pressed"
Case 4
MsgBox "ALT key pressed"
Case 5
MsgBox "ALT and SHIFT keys pressed"
Case 6
MsgBox "CTRL and ALT keys pressed"
Case 7
MsgBox "CTRL, ALT, and SHIFT keys pressed"
End Select
End Sub
- Run the UserForm.
- Click the command button with any combination (or none at all) of the CTRL, ALT, and SHIFT keys pressed as you click with your mouse.
A message box appears listing the buttons you pressed. - Close the UserForm.
The following table outlines the values of the Shift argument:
Value of Shift
argument Keys Pressed
-------------------------------------
0 no keys pressed
1 SHIFT
2 CTRL
3 SHIFT and CTRL
4 ALT
5 ALT and SHIFT
6 ALT and CTRL
7 ALT, SHIFT, and CTRL