Which of the following toolbox is used to include an image on the Visual Basic form?

Add Image box
Picture Box
Add Picture Box
Image box

The correct answer is: B. Picture Box

A Picture Box is a control that allows you to display an image on a form. It is a rectangular control that can be resized and moved like any other control. To add a Picture Box to a form, click on the Picture Box control in the Toolbox and then drag it onto the form. You can then resize and move the Picture Box as needed.

To add an image to a Picture Box, right-click on the Picture Box and select “Properties”. In the Properties window, click on the “Image” property and then select the image that you want to display.

You can also use the Picture Box control to create a simple image viewer. To do this, add a Picture Box to a form and then add a button to the form. In the code for the button, add the following code:

Private Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click
Dim image As Image = New Image("C:\path\to\image.jpg")
PictureBox1.Image = image
End Sub

This code will load the image “image.jpg” into the Picture Box when the button is clicked.

The other options are incorrect because they are not controls that can be used to display an image on a form.