Can you help me with this in VB.Net
Im trying to have a shortcut here for my AnnotateViewer
when i press “Ctrl + Down”
the view must scroll down.
Here’s the code that i tried
Dim pt As Point = iView.ScrollPosition
If e.Control And e.KeyCode = Keys.NumPad0 Then
pt.Y -= 99999
Msg("Scroll Down")
End If
yeah now it works.
I used these codes