Hi,
You have to create your own "edit" handlers, such as using
Screen.ActiveControl.
Or pass the messages onto the Controls via API.
eg:
If TypeOf Screen.ActiveControl Is ComboBox Or TypeOf
Screen.ActiveControl Is TextBox Then
Call SendMessageLong(Screen.ActiveControl.hwnd, WM_CUT, 0&, 0&)
End If
David
lilchips.com
Quote:
> Does anybody know how I allow individual controls to respond to the
CTRL-C,
> CTRL-V, CTRL-X actions and implement the standard accelerator keys?
> When I add a menu item with a shortcut, the menu click is executed and the
> standard control response is bypassed.
> Eddie