OK randy21m . . . . . . Sorry to get back so late!
I built this up over time and its a little extensive. If anywhere in the sequence of instructions you have a problem, stop there and let me know.
[highlight][green]
Step 1[/green][/highlight]
Never make a table without a [blue]Primary Key[/blue] (PK). So in your [blue]YuGiOh[/blue] table, insert a line at the top with the following:
[blue]Name = YugiOhID
Type = Auto Number[/blue]
Add the following field (this will hold the path * filename to all your graphics)
[blue]Name = picPath
Type = Text
Field Size = 255[/blue]
Save & Close the table.
[highlight][green]
Step 2[/green][/highlight]
Make a query that includes the Pk, Name, and picPath fields. Set your sorting on the name field. Name the query [blue]qryPic[/blue]
[highlight][green]
Step 3[/green][/highlight]
Make a conitnuous form using [blue]qryPic[/blue] as the [purple]Record Source[/purple] (this is the form you'll use to edit/set the paths to your picture files). Put the Name & picPath controls on the form. Then, set the following on the Forms Format Porperties Tab:
[blue]Default View = Continuous
Scroll Bars = Verticle Only
Auto Resize = Yes
AUto Center = Yes
Border Style = Thin[/blue]
On the Data Properties Tab for the form set the following
[blue]Allow Additions = No[/blue]
On the Other Properties Tab set the following
[blue]Pop Up = Yes[/blue]
Save the form (do not close it. leave it in design view)
[highlight][green]
Step 4[/green][/highlight]
I decided to make it easy for you to enter your picture Path & FileNames by incorperating the [purple]Common Dialog Control[/purple] (don't ask . . . just keep going!). Wether or not this can be done depends on your version of Access.
So on the MenuBar click Insert - ActiveX Control... A dialog opens. Scroll down thru the list. Your looking for: [purple]Microsoft Common Dialog Control, version 6[/purple]. If you don't find it, you'll have to enter your Path & FileNames manually ([purple]in this case goto Quote 5[/purple]).
If do have it, select it and click OK. A small square button will appear on the form. Just leave it, its hidden in form view.
In the Other Properties Tab for the new control, set the Name Property at the top:
[blue]Name = axCom[/blue]
Now . . . . in the [blue]DoubleClick Event[/blue] for the [blue]picPath[/blue] control, add the following code:
[blue]Dim axCtl As Object
Set axCtl = Me!axCom
axCtl.DialogTitle = "Insert Picture Path & FileName"
axCtl.InitDir = "D:\Graphics\Misc"
axCtl.Filter = "Bitmaps (*.bmp)|*.bmp|Jpegs (*.jpg)|*.jpg|Gifs (*.gif)|*.gif"
axCtl.ShowOpen
Me!Text3 = axCtl.FileName
Set axCtl = Nothing[/blue]
Compile & Save and close the form
[highlight][green]
Step 5[/green][/highlight]
Test the form by entering a few paths (manually, or by double-clicking picPath if you were able to install the Common Control) in the first few records.
I'm gonna stop here and see if you can get this far.
Let me know! . . . . .
See Ya! . . . . . .