L lzm Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-09 #1 如題。 我的圖片存在D;/image里。 BMP格式。 該在哪里寫Fast的腳本將圖片LOAD進TPicture里。寫在哪個事件里呢? 對腳本不熟﹐請多指教﹗
W whf Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-12 #3 在Picture1的脚本 begin Picture1.LoadFromFile('d:/image/1.bmp'); end;
小 小隐 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-12 #4 var frPic : TfrPictureView; begin frPic := frReport1.FindObject('frPicture1'); if frPic <> nil then frPic.Picture.LoadFromFile('d:/image/1.bmp'); end;
var frPic : TfrPictureView; begin frPic := frReport1.FindObject('frPicture1'); if frPic <> nil then frPic.Picture.LoadFromFile('d:/image/1.bmp'); end;