tags:

views:

5

answers:

1

hello, i have an picturebox and textarea in an panel i need to scroll the picture box image on keypress down arrow >..

A: 
Private Sub PictureBox1_PreviewKeyDown(sender As Object, e As System.Windows.Forms.KeyEventArgs) Handles PictureBox1.PreviewKeyDown
    If e.KeyCode = Keys.Down Then 
       ' Scrolling Code
    End If
End Sub 

You can handle a picture box keydown like this.

kyndigs