If the order they fire in is important you will probably be better of using the AddHandler command.
Private Sub Click1(ByVal sender As System.Object, ByVal e As System.EventArgs)
MsgBox("Event 1 Fired.")
End Sub
Private Sub Click2(ByVal sender As System.Object, ByVal e As System.EventArgs)
MsgBox("Event 2 Fired.")
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Addhandler Button1.Click, Addressof Click1
Addhandler Button1.Click, Addressof Click2
End Sub