-
Notifications
You must be signed in to change notification settings - Fork 103
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
Adding double click functionality #319
Adding double click functionality #319
Conversation
Getting latest copy of master
Getting latest copy of Instat
Private Sub lstAvailableVariable_DoubleClick(sender As Object, e As EventArgs) Handles lstAvailableVariable.DoubleClick | ||
CurrentReceiver.AddSelected() | ||
CurrentReceiver.Focus() | ||
End Sub |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good attempt but you are repeating code. This should call the add sub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, let me look at it again
Here is the corrected version of the double click functionality for the data selector |
Adding double click functionality
I added the double click functionality for the selector user control.