SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
An ANSI key is pressed.
VB.NET | Private Sub object_KeyPressEvent(ByVal sender As Object, ByVal e As EventArgumentType) Handles object.KeyPressEvent |
VB | Private Sub object_KeyPress(KeyAscii As Integer) |
C#.NET | void object_KeyPressEvent(object sender, EventArgumentType e); |
VC++ | void OnKeyPressobject(short* KeyAscii); |
C | HRESULT OnKeyPressobject(short* KeyAscii); |
object
KeyAscii
Describes the key pressed using standard numeric ANSI key codes.
The KeyPress event occurs when an ANSI key is pressed.
The KeyPress event is generated when the user presses a key while the control has the input focus.
Use KeyDown and KeyUp events to handle any keystroke not recognized by KeyPress, such as function keys, editing keys, navigation keys, and any combination of these with keyboard modifiers, such as SHIFT, CONTROL and ALT keys. Unlike the KeyDown and KeyUp events, KeyPress doesn't indicate the physical state of the keyboard; it passes a character instead.
The key typed by the user can be suppressed by setting KeyAscii to 0. It can be modified by assigning a new value to the KeyAscii variable.
See Also SftBox Object | Object Hierarchy