Re: MouseUp event signature
Quote:
Originally posted by squirrelly1
VB Code:
Private Sub lstItems_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs, [b]ByVal f As System.Windows.Forms.KeyEventArgs<b>Ok... The following won't work because it says that the arguments I added are not in the "signature" of the .MouseUp event...
</b>) Handles lstItems.MouseUp
I added the bolded part...
Where can I go or what can I do to override this signature? Is it possible?
Thanks,
Squirrelly1 [/B]
I would be interested to know where you got the idea you could do this. Look up the MSDN Help and you will find no indication that you can have more that one argument (as opposed to Handles or Parameters) in an event handler. Anyway, why do you need it?