Hi Everyone,
This is my first time to post a question about VFP 6.0. I want to display a .JPG pict on the oleboundcontrol but everytime i try to retrieve a .JPG it displays only the icon and not the actual picture. It seems that it only supports the .BMP pictures, how can I get the .JPG and displays it.
Thank you in advance.
VFP avid fan

Oleboundcontrol
Vipul123
sele test
if eof()
wait wind "End of file encountered"
else
skip
endi
thisform.image1.picture = test.pict
Test 007
Better yet would be to upgrade to VFP 9.0 to easily display JPGs and store them in a BLOB field.
Constantin Mihai - MSFT
If you store the path&filename instead at runtime you could have an image control and simply change the picture property.
If you really need the store the picture itself in table then again do not store to a general field but to a memo binary field. At run time, you could copy the contents to an external temp file and set Image.Picture property.