03-08-2012, 01:28 AM
(This post was last modified: 03-08-2012, 01:29 AM by AceInfinity.)
I look forward to seeing vb tutorials here, haven't seen contributions in this section for a long time.
you can also assign a handler to it:
you can also assign a handler to it:
Code:
AddHandler Button1.Click, AddressOf Testing
Code:
Private Sub Testing()
MsgBox("Test")
End Sub