Hi there.
I am used to VB6, and when you double click on a control, an even sub is started, for example, double clicking on a command button brings up this:
Then other events can be found using a drop down list.
However, i cannot work out how to get different events in VB.NET :-( I would especially like to know how to do it for the winsock reference thingymaboper lol. Also, what is the propper way to get the reference into my code? for example, in VB6,
is placed at the very top of the code, but in V.NET, there is loads of other stuff at the top of the page too.
Can you help?
Thanks!
I am used to VB6, and when you double click on a control, an even sub is started, for example, double clicking on a command button brings up this:
Code:
Private Sub Command1_Click()
End Sub
Then other events can be found using a drop down list.
However, i cannot work out how to get different events in VB.NET :-( I would especially like to know how to do it for the winsock reference thingymaboper lol. Also, what is the propper way to get the reference into my code? for example, in VB6,
Code:
Dim myvar As somethingHere
Can you help?
Thanks!