bBegley,
thanks for the tip.
I solved it by entering a file refrence in the image field of the paradox database e.g c:\yomi.bmp
then when the user presses any button on the navigator, the dbimage.picture.loadfromfile loads the image based on the field[x].asstring refrence. like thus :
procedure TForm1.DBNavigator1Click(Sender: TObject; Button: TNavigateBtn);
begin
label1.caption := table1.fields[7].AsString;
DBImage1.Picture.LoadFromFile(table1.fields[7].AsString);
end;
Thanks for the tip.
thanks for the tip.
I solved it by entering a file refrence in the image field of the paradox database e.g c:\yomi.bmp
then when the user presses any button on the navigator, the dbimage.picture.loadfromfile loads the image based on the field[x].asstring refrence. like thus :
procedure TForm1.DBNavigator1Click(Sender: TObject; Button: TNavigateBtn);
begin
label1.caption := table1.fields[7].AsString;
DBImage1.Picture.LoadFromFile(table1.fields[7].AsString);
end;
Thanks for the tip.