Hello,

I am somewhat new to VB, so hang with me.
I have uploaded a zip of my mdb if anybody needs to see it:
https://sites.google.com/site/oakdal...edirects=0&d=1

I have a table named "Signs" and another table named "tblMUTCD".
Signs is a table that contains 2000+ records of sign attributes and has a
path field to where I've stored links to their picture. The tblMUTCD is a
table of sign codes and their generic picture, where there is a path field to
where I've store links to them as well.

I am able to do the first part, that is a picture object that displays the
picture from the signs table by using:
Private Sub Form_Current()
Me.imgPic.Picture = Me.txtImagePath



But it's the second part that I'm not able to do.
On the same form I want to have a combo box that displays all the codes from
tblMUTCD (from my query I've created). I want to choose a code from the
combo box to populate the "Name" field of the Signs table, while also
displaying the generic picture from the tblMUTCD and continue to scroll
through all the records to do the same.

Hope this makes sense,

Thanks a ton!