No puedo creer haber sido tan olvidadizo.
Jajaja, mil disculpas, y gracias por todo a los dos! :)
Por si alguien quiere les dejo un ejemplo por si alguna vez tienen la misma duda:
Cita: Private Sub btn_Click(ByVal sender As Object, ByVal e As EventArgs)
MessageBox.Show("btn_Click method", "Events Demonstration")
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim btn As Button
btn = New Button()
btn.Location = New Point(50, 50)
btn.Text = "Test"
Controls.Add(btn)
AddHandler btn.Click, AddressOf btn_Click
End Sub