Re: Storing and displaying pictures with MS Access -D7



Here is a couple snipplets from my code:

from field to TImage

TBlobField(form2.table1.FieldByName('Image')).Assign(form1.image1.Picture.Bitmap);

from TImage to Field

form1.image1.Picture.Bitmap.Assign(TBlobField(form2.table1.FieldByName('Image')));

Hope this helps!

sholmes



"ielite" <ielite@xxxxxxxxx> wrote in message
news:rfNce.25654$QR1.7729@xxxxxxxxxxx
> Really, I used that same exact titorial and it works for me great!
>
> What exact errors or problems are occuring for you?
>
> sholmes
>
>
> "Jacques" <jacques.noah@xxxxxxxxxxxxxx> wrote in message
> news:42739bc1@xxxxxxxxxxxxxxxxxxxxxxxxx
>> Does anyone one know how to store and retrieve pictures(jpg,bmp etc) in a
>> Access database? I tried to follow a tutorial on it at
>> http://delphi.about.com but that example does not seem to work.
>>
>> Can anyone help?
>> Thanks
>>
>
>


.