Picture??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How to insert a picture which are linking to them but not consuming spaces in
database?

Any ideas?

Thanks In Advance

Kennykee
 
How to insert a picture which are linking to them but not consuming spaces in
database?

Any ideas?

Thanks In Advance

Kennykee

Use an Image control.
If the picture is the same for all records, set the control's Picture
property to it's path, i.e. "c\FolderName\MyPicture.jpg"

If the Picture is to vary with each record, you can store just the
path to the record and the picture name in a regular table field.
Then use the Format event of whatever section the Image control is
placed in to set the Picture property using code:

ImageName.Picture = [FieldName]
 
Thanks fredg
I try it out.

KennyKee


fredg said:
How to insert a picture which are linking to them but not consuming spaces in
database?

Any ideas?

Thanks In Advance

Kennykee

Use an Image control.
If the picture is the same for all records, set the control's Picture
property to it's path, i.e. "c\FolderName\MyPicture.jpg"

If the Picture is to vary with each record, you can store just the
path to the record and the picture name in a regular table field.
Then use the Format event of whatever section the Image control is
placed in to set the Picture property using code:

ImageName.Picture = [FieldName]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top