how can use the keys ?
-
if there some way to use keys in some program for example (Ctrl + v) do something in program in vb ?
-
if there some way to use keys in some program for example (Ctrl + v) do something in program in vb ?
You need to explain better what you are trying to do.
-
You need to explain better what you are trying to do.
i want to record sound from wavepad in vb by macro key in wavepad program can i do that ?
-
i want to record sound from wavepad in vb by macro key in wavepad program can i do that ?
You can handle the keyboard events, maybe set myForm.KeyPreview true. It is however much easier, if you have menus, to add a MenuItem for the action you want, and assign a shortcut to that menu item. Then no extra code is required. :)
Luc Pattyn [Forum Guidelines] [My Articles]
This month's tips: - before you ask a question here, search CodeProject, then Google; - the quality and detail of your question reflects on the effectiveness of the help you are likely to get; - use PRE tags to preserve formatting when showing multi-line code snippets.