michaelrawi
Newcomer
Supposed I want to create a button, and only need it's click event. Which one should I use:
or
Which is the best and why?
Thanks in advance
Code:
dim withevents button1 as windows.forms.button
or
Code:
dim button1 as windows.forms.button
addhandler button1.click,addresof button1_click
Which is the best and why?
Thanks in advance