I'm planning on using merrion's hotkey control to do [something] when the hotkey is pressed.
Is there a way that I can use it's HotkeyPressed event and have the app "loop" so it doesn't exit right away?
Printable View
I'm planning on using merrion's hotkey control to do [something] when the hotkey is pressed.
Is there a way that I can use it's HotkeyPressed event and have the app "loop" so it doesn't exit right away?
Hi.
I guess you could do something like this:
VB Code:
Private WithEvents MyComp as WhatEverComp Public Sub Main MyComp = New WhatEverComp() While bExitApp=False Application.DoEvents() End While End Sub
k Thanks!.
I just wasn't sure if I form was required or not.