Regards for all Delphi Guru :)
I have table in Access 2010, one of the column type is OLE Object named "ProductImage" I use that column to save Bitmap Image.
The problems is, How can I display that image using DBImage or TImage in Delphi 7? I've tried this
procedure TF_Search2.DBGrid1CellClick(Column: TColumn);
begin
Image7.Picture.Assign(DataModule1.T_Products.FieldByName('ProductImage').LoadFromFile('c:\test.jpg'));
end;
It's error : need parameter in this part 'LoadFromFile('c:\test.jpg')' I tried also using "TBlobField", but I got error : undeclared identifier TBlobField I read that it should in unit and uses. I don't understand what's that mean. Should I add something on installation folder or what?
Any helps would be appreciated.
Thank You