Your issue is your handler
You are specifying the handler in the procedure when you should be adding the handler to the object.
Instead of this:
Code:
Private Sub Multiple_Button(ByVal sender As Button, ByVal e As System.EventArgs) Handles Button1.Click
do this
Code:
Private Sub Multiple_Button(ByVal sender As Button, ByVal e As System.EventArgs)
and then use addhandler to add a handler to the buttons you want to use this sub.
you can do this in the load
Code:
addhandler Button1.Click, addressof Multiple_Button
addhandler Button2.Click, addressof Multiple_Button