The process of installing, configuring, and customizing Visual Studio to support development workflows across languages, platforms, and workloads.
Hi
Don't ask multiple questions in the same thread, keep each to it's own thread.
Regarding the Button Event Handlers. Yes, you can assign as many buttons to the same event handler, either by declaring the assignments as you show using AddHandler, or, by adding the Button ID to the Handler clause itself.
For the other questions, start new threads for them.
Here is a very simple example. On the Form there are 3 Buttons (2,3,4) and 3 PictureBoxes (2,3,4)
This Handler code will deal with all the Buttons via a Case structure.
Sub AllButtonsClick(sender As Object, e As EventArgs) Handles Button2.Click, Button3.Click, Button4.Click
Dim b As Button = DirectCast(sender, Button)
Select Case b.Name
Case "Button2"
PictureBox2.Visible = Not PictureBox2.Visible
Case "Button3"
PictureBox3.Visible = Not PictureBox3.Visible
Case "Button4"
PictureBox4.Visible = Not PictureBox4.Visible
' and further Case statements
End Select
End Sub