jeffrey159
Registered User.
- Local time
- Today, 00:50
- Joined
- Jan 17, 2013
- Messages
- 24
How do i actually store and display my image in a form which works when i click on a item in the listbox and it will display the image i want
Currently i'm using a unbound form with listbox and rowsource from Queries.
When i click on the listbox it gave me
is there any simple way to insert image into access and it will appear in just 1 image box ?
and depending on which item i click on the listbox the image will change?
Currently i'm using a unbound form with listbox and rowsource from Queries.
When i click on the listbox it gave me
This is the code i tested"you referred to a property by a numeric argument that's isn't one of the property numbers in this collection."
the (3) is referred to the 3rd column of the listbox right? is it because the rowsource is from a query that's why i have that error or because the query contains multiple different tables?Private Sub List6_Click()
If Me.List6.ItemsSelected.Item(3) = "DF" Then
Me.Image32.Visible = True
End If
End Sub
is there any simple way to insert image into access and it will appear in just 1 image box ?
and depending on which item i click on the listbox the image will change?