Description
-
Fires when key was pressed.
Syntax
-
Private Sub
object_KeyPress(Item,
KeyAscii)
The KeyPress Event syntax has these parts:
| object |
A wodFtpDLX
object. |
| Item |
A DirItem object.
Reference to item that was selected when user pressed the key. |
| KeyAscii |
A Long value. ASCII character
key value. |
Remarks
-
Available only in ActiveX (GUI) version!
KeyPress event is fired when user presses key while wodFtpDLX has
focus. You can perform some application specific functions based on
user's keypress. You can set KeyAscii value to 0 in order for
wodFtpDLX to ignore that key, to behave like it was never pressed at
all.
|