Clear picture from Image Box

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,226
Office Version
  1. 2007
Platform
  1. Windows
Hi,
Some info for you.

I have a userform with the following.

ComboBox1
ListBox1
ImageBox

I wish to clear the ImageBox when i first / each time make a selection from the ComboBox

I have tied this below but get a RTE 438

Rich (BB code):
Private Sub ComboBox1_Change()

Dim index As Integer
index = ComboBox1.ListIndex
ListBox1.Clear
ImageBox.Picture.Clear

Select Case index
    Case Is = 0 ' AIR BLADE
        With ListBox1
            .AddItem "AIR BLADE 2018-2019"
            .AddItem "AIR BLADE 2020-2021"
            .AddItem "AIR BLADE 2022"
        End With
    Case Is = 1 ' CBR
        With ListBox1
            .AddItem "CBR 1000 2021"
        End With

So i make a ComboBox selection.
I then make a selection from the ListBox & its relevant image is loaded.

Now i wish to make a different selection from the ComboBox, It is now i wish to clear the ImageBox
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN

Forum statistics

Threads
1,214,611
Messages
6,120,513
Members
448,967
Latest member
screechyboy79

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top