Store linked pictures in recordset

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
 
T

Tim Ferguson

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
 
Top