[RESOLVED] [1.0/1.1] What's in C# as Handles in VB?
Hello,
When we create a function or Sub, say Button1.Click, then at the end [Handles Button1.Click] is appended. So if I make a custom function or Sub and append the Handles Button1.Click at its end, clicking the button will call the function automatically.
I could not remember how I implemented this thing in C#. Please could somebody tell me??
Thank you.
Re: [1.0/1.1] What's in C# as Handles in VB?
Button1.Click += New EventHandler(method_name);
Re: [1.0/1.1] What's in C# as Handles in VB?
Thank you, and I even sorted out my problem.
Thank you again.