If you are referring to adding a picture file to a table, you need to have a field of type GENERAL to hold the image. You can then use something like:
APPEND BLANK && Add a blank record
APPEND GENERAL mygenfield FROM c:\images\myimage.bmp
However, I would strongly advise against doing it that way for several reasons. First, it causes excessive file bloat. The associated .dbf's memo file can grows up to twice the size of the image file for each image added.
Second, you must have the same imaging application installed on each computer which tries to read the file, or they won't be able to open the image.
And third, it is a real chore to extract/export the image files from the table again should you decide you want to modify them.
I would recommend using a character field instead, and just referencing the image files using the full path and file name in that field.
-Dave Summers-
![[cheers] [cheers] [cheers]](/data/assets/smilies/cheers.gif)
Even more Fox stuff at: