I tried to add a "ButtonDown" event, which in this library is named "MouseDown".
What am I doing wrong, so that I have this message:
Quote:
|
Object of type 'System.EventHandler' cannot be converted to type 'System.Windows.Forms.MouseEventHandler'.
|
The "click" event works ok, but this one works by you?
Thank you in advance for any helpful answer.
Code:
Sub Globals
End Sub
Sub App_Start
Form1.Show
rb3.New1("form1","RB3",150,40,80,30,cWhite,cBlack,1)
End Sub
Sub rb3_mousedown
Msgbox("Click")
End Sub
This one will give above mentioned error pointing the line "rb3.new1..."