Pretty broad strokes here, so just a couple of pointers. To store pictures,
set the data type of the field in the table to OLE object. On the form where
you want to link/display this, create a Bound Object Frame with ControlSource
of Object (let's call it Picture1).
Then create a button (let's call it ButtonPick) that will allow you to pick
the picture from its location and insert it into the field in the table:
Private Sub ButtonPick_Click
Picture1.SetFocus
DoCmd.RunCommand acCmdInsertObject
End Sub
> I'm considering creating my first database in Access 2003 and I am still
> learning how to use it. I would be taking inventory of my belongings in my
[quoted text clipped - 7 lines]
> don't know. I did look around the MS templates website and didn't find
> anything that matched what I was looking for. Any help is greatly appreciated.