Jan 31, 2003 #1 D Datahighway Active member Joined Jul 26, 2002 Messages 44 Location Germany Hi , How can i check if the right or left mouse button pressed ? thanks regards Datahighway
Jan 31, 2003 #2 C Cywizz Well-known member Joined Jan 31, 2003 Messages 136 Location JHB, South Africa You can query the mouse button that was pressed in the mousdown/mouseup event - using the mouseventargs parameter e.g. Code: if e.Button = MouseButtons.Left then ..... Cheers
You can query the mouse button that was pressed in the mousdown/mouseup event - using the mouseventargs parameter e.g. Code: if e.Button = MouseButtons.Left then ..... Cheers