Store linked pictures in recordset

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Hi

I'd like to store more than 1000 pictures as link in a microsoft access
recordset. I know how to do that manually with a form, but how to do it with
a loop command?

Many thanks in advance.

Tom
 
I'd like to store more than 1000 pictures as link in a microsoft
access recordset. I know how to do that manually with a form, but how
to do it with a loop command?

For n = 1 to 1001
StorePicture GetPictureFileNameAndPath()

Next n


Tim F
 
Back
Top