Key Press

Add-in Express™ Support Service
That's what is more important than anything else

Key Press
 
SSL




Posts: 178
Joined: 2014-01-05
I have a timer that start on "AddinModule_AddinStartupComplete", which displays notifications if a particular user has any, is there any way I can add a key press sequence to stop the notifications, I have tried with :



 Private Sub AddinModule_OnKeyDown(sender As Object, e As ADXKeyDownEventArgs) Handles Me.OnKeyDown

        If e.Ctrl = True And e.Shift = True And e.VirtualKey = Keys.T Then

            MessangerTimer.Stop()

             End If

    End Sub


Any thoughts

Regards,
Tom
Posted 13 Mar, 2015 10:57:00 Top
Andrei Smolin


Add-in Express team


Posts: 18818
Joined: 2006-05-11
Hello Tom,

Am I right assuming that the OnKeyDown event doesn't work? If yes, make sure that you set the HandleShortcut property of the add-in module to true.


Andrei Smolin
Add-in Express Team Leader
Posted 16 Mar, 2015 04:42:11 Top