|
Creating the Accelerator-Table Resource
You create an accelerator-table resource by using the ACCELERATORS statement in your application's resource-definition file. You must assign a
name or resource identifier to the accelerator table, preferably unlike that of
any other resource. Windows uses this identifier to load the resource at run
time.
Each accelerator you define requires a separate entry in the accelerator
table. In each entry, you define the keystroke (either an ASCII character code or
virtual-key code) that generates the accelerator and the accelerator's
identifier. You must also specify whether the keystroke must be used in some combination
with the ALT, SHIFT, or CTRL keys. For more information about virtual keys, see Keyboard Input.
An ASCII keystroke is specified either by enclosing the ASCII character in
double quotation marks or by using the integer value of the character in
combination with the ASCII flag. The following examples show how to define ASCII
accelerators.
"A", ID_ACCEL1 ; SHIFT+A
65, ID_ACCEL2, ASCII ; SHIFT+A
A virtual-key code keystroke is specified differently depending on whether the
keystroke is an alphanumeric key or a non-alphanumeric key. For an
alphanumeric key, the key's letter or number, enclosed in double quotation marks, is
combined with the VIRTKEY flag. For a non-alphanumeric key, the Windows virtual-key
code for the specific key is combined with the VIRTKEY flag. The following
examples show how to define virtual-key code accelerators.
"a", ID_ACCEL3, VIRTKEY ; A (caps-lock on) or a
VK_INSERT, ID_ACCEL4, VIRTKEY ; INSERT key
The following example shows an accelerator-table resource that defines
accelerators for file operations. The name of the resource is FileAccel.
FileAccel ACCELERATORS
BEGIN
VK_F12, IDM_OPEN, CONTROL, VIRTKEY ; CTRL+F12
VK_F4, IDM_CLOSE, ALT, VIRTKEY ; ALT+F4
VK_F12, IDM_SAVE, SHIFT, VIRTKEY ; SHIFT+F12
VK_F12, IDM_SAVEAS, VIRTKEY ; F12
END
If you want the user to press the ALT, SHIFT, or CTRL keys in some combination with the accelerator keystroke, specify the ALT,
SHIFT, and CONTROL flags in the accelerator's definition. Following are some
examples.
"B", ID_ACCEL5, ALT ; ALT_SHIFT+B
"I", ID_ACCEL6, CONTROL, VIRTKEY ; CTRL+I
VK_F5, ID_ACCEL7, CONTROL, ALT, VIRTKEY ; CTRL+ALT+F5
By default, when an accelerator key corresponds to a menu item, Windows
highlights the menu item. You can use the NOINVERT flag to prevent highlighting for
an individual accelerator. The following example shows how to use the NOINVERT
flag.
VK_DELETE, ID_ACCEL8, VIRTKEY, SHIFT, NOINVERT ; SHIFT+DELETE
To define accelerators that correspond to menu items in your application,
include the accelerators in the text of the menu items. The following example shows
how to include accelerators in menu-item text in a resource-definition file.
FilePopup MENU
BEGIN
POPUP "&File"
BEGIN
MENUITEM "&New..", IDM_NEW
MENUITEM "&Open\tCtrl+F12", IDM_OPEN
MENUITEM "&Close\tAlt+F4" IDM_CLOSE
MENUITEM "&Save\tShift+F12", IDM_SAVE
MENUITEM "Save &As...\tF12", IDM_SAVEAS
END
END
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|