Hello, I have this code to create a new button
Code:
 Dim NewButton As New Button
frmDownload.Controls.Add(NewButton )
This works.
But I want to change what happens upon clicking NewButton.
It should start an application.
I tried NewButton.Click but that event doesn't exist.

Help?