Events

Darren Ramey

Newcomer
Joined
Jan 25, 2003
Messages
7
I have a feeling all the info I need is probably in the VB.net manuals but I don’t have those since I bought the step by step version.

Back when I was programming VB3, It was easy to see what events a control had. In VB.Net I am clueless. I can find 1 default event by double clicking on a control in design mode but I am not even sure where to look for the others. Is the info in the help files? I can’t find it anywhere.

Sorry for being such a newb:)
 
The control's event are listed in the help files that are associated
with that class name.

They are also listed in the code window via the two dropdown
menus at the top. Choose the control in the box at the left, then
choose the event in the box on the right. An event handler will
be added for this event.
 
Back
Top