-
Notifications
You must be signed in to change notification settings - Fork 222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No overload for ... matches delegate 'MouseEventHandler' #474
Labels
VB -> C#
Specific to VB -> C# conversion
Comments
Thanks for the report, could you post the input code please? I tried the following but it seemed to work fine: Private Sub ChangeMaxLevel(ByVal sender As Object, ByVal e As MouseEventArgs)
Try
Waterfall1.Levels.Axis.Max = tb_MaxLevel.Value
Catch ex As Exception
PostErrors_ThreadSafe(ex.ToString, "ChangeMaxLevel", "", True)
End Try
End Sub I notice you posted two different methods in your report, did one work and the other not work? If so, seeing both might speed up diagnosis of the issue. Thanks! |
GrahamTheCoder
added
the
needs-repro
Needs either the input that caused the error, or more information to allow reproducing the error
label
Jan 3, 2020
GrahamTheCoder
removed
the
needs-repro
Needs either the input that caused the error, or more information to allow reproducing the error
label
Mar 3, 2020
Found a repro Partial Public Class Form1
Private Sub Form1_MouseClick() Handles Me.MouseClick
End Sub
Public Sub Init()
AddHandler Me.MouseClick, AddressOf Form1_MouseClick
End Sub
Public Sub Other()
Form1_MouseClick()
End Sub
End Class Notes:
|
GrahamTheCoder
added a commit
that referenced
this issue
Mar 3, 2020
GrahamTheCoder
added a commit
that referenced
this issue
Mar 5, 2020
Please retest. Should be fixed by #537 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Erroneous output
Expected output
The text was updated successfully, but these errors were encountered: