forum

home / developersection / forums / change two images in one picture box using a button (vb.net)

Change two images in one picture box using a button (VB.NET)

Mark Devid 4635 05-Apr-2013
Hi Everyone!

I've been trying to change the image in a picture box. It works if I want to change it with one image, but I can't get it to change to the other image. It 

should alternate between the two images when I click the button.

Here is my code:

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)  Handles Button1.Click

    Dim num As Boolean
    If num = False Then
        PictureBox3.Image = My.Resources.Beep
        num = True
    Else
        PictureBox3.Image = My.Resources.Skateboard
        num = False

    End If
End Sub

I've been trying to figure out why it doesn't work for a long time, any help wouldbe appreciated.

Thanks in advance!

Updated on 05-Apr-2013
Mark Devid

Other


Message
Can you answer this question?

Answer

2 Answers

Liked By