============================================== Determine which mouse button was pressed: p274 Sub Form_MouseDown (Button as integer, Shift as Integer, X as Single, ... ... Y as Single) If Button = 1 Then "You pressed the left button" If Button = 2 Then "You pressed the right button" If Button = 4 Then "You pressed the middle button" End Sub