sterobw: Hope this finds you with a database that is starting to work for you. To answer some of you questions, the OnCurrent event procedure is a subroutine of the Form not the image control.
Now the concept that I was describing in the above mentioned thread was trying to keep the user from having to store images all over their database and store the images path in each record. The idea here is to store the imagepath only one place as if all of the pictures are in one folder then we only need to know the path one time to that folder.
Now if each image is named with a naming convention that relates to the recordID then we don't even have to store the name of the image. We can just combine the image folder path with the record ID and ".jpg" to direct the image control as to where the picture is to be loaded from.
So if we store the image folder path in a time in the application and read that into a global variable we now can use that to direct the picture loading. When the images are saved into this folder just name them appropriately to the recordID. RecordID: A12345B Jpeg Image: A12345B.jpg
Now for each record it is an easy process to cancatenate the path, file name, and extension together and then update the image controls .Picture property.
Is any of this starting to make sense. This is effecient and doesn't require any additional storage of data. Just a little orginization of the files and a little code.
Post back if you have any further questions.
[COLOR=006633]Bob Scriver[/color]
[COLOR=white 006633]MSU Spartan[/color]