急~~請各位高手幫幫忙~匯入的問題及圖檔的問題 |
答題得分者是:領航天使
|
killerterry
一般會員 發表:8 回覆:4 積分:2 註冊:2002-10-17 發送簡訊給我 |
|
領航天使
站長 發表:12216 回覆:4186 積分:4084 註冊:2001-07-25 發送簡訊給我 |
引言: 小弟在寫一個專題程式 做了一個DB的資料庫有一個pic的格式他的屬性是OLE物件 我在做一個基本資料的檔案 但是我的照片要如何存入table的資料庫裡面呢 因為一離開圖就不見了 而且我做了一個履歷表的列印 但是QRIMAGE1他沒有事件可以寫要去那跟我指到的table做連結呢 還有 匯入時我是匯到文字檔以","分開 但是我有一個日期的格式以及圖檔(OLE)物件的格式還有一個memo 要如何匯入時才能把這些檔案讀入啊 我周四就要口試了請各位大大幫幫忙救救我吧!!將圖檔寫入資料庫的程式範例可以參考 : http://delphi.ktop.com.tw/topic.php?TOPIC_ID=19505 至於您說要將文字檔匯入,且要匯入圖檔, 這應該不可行吧? 圖形資料無法放在文字檔中吧? 頂多在文字檔中放圖檔名稱, 在另外寫程式將指定的圖檔寫入資料庫! ~~~Delphi K.Top討論區站長~~~
------
~~~Delphi K.Top討論區站長~~~ |
killerterry
一般會員 發表:8 回覆:4 積分:2 註冊:2002-10-17 發送簡訊給我 |
引言:還有一個問題為什麼我做了一個小型的播放程式 我要把路徑存到dbedit的text或是直接寫到table的Asstring 我的文字會錯誤或是被截斷或是看不見文字要點在DBEDIT上按一下才可以不知道為什麼 還有圖檔不能匯入的話 可以在匯入時把他略過嗎或是不讀他 還有一個就是QRIMAGE沒有事件要怎麼跟我所指到的table的資料做連結呢??引言: 小弟在寫一個專題程式 做了一個DB的資料庫有一個pic的格式他的屬性是OLE物件 我在做一個基本資料的檔案 但是我的照片要如何存入table的資料庫裡面呢 因為一離開圖就不見了 而且我做了一個履歷表的列印 但是QRIMAGE1他沒有事件可以寫要去那跟我指到的table做連結呢 還有 匯入時我是匯到文字檔以","分開 但是我有一個日期的格式以及圖檔(OLE)物件的格式還有一個memo 要如何匯入時才能把這些檔案讀入啊 我周四就要口試了請各位大大幫幫忙救救我吧!!將圖檔寫入資料庫的程式範例可以參考 : http://delphi.ktop.com.tw/topic.php?TOPIC_ID=19505 至於您說要將文字檔匯入,且要匯入圖檔, 這應該不可行吧? 圖形資料無法放在文字檔中吧? 頂多在文字檔中放圖檔名稱, 在另外寫程式將指定的圖檔寫入資料庫! ~~~Delphi K.Top討論區站長~~~ |
chris
一般會員 發表:1 回覆:10 積分:2 註冊:2002-09-13 發送簡訊給我 |
[Images and Shapes]
==================
Q. My images do not print consistently.
A. This can happen for a few reasons. If you are using a TQRDBImage and the images do not always print, it may be a problem with how the BDE is handling the BLOB data.
Instead of using a TQRDBImage, use a TQRImage and a TDBImage. Assign the database bitmap to the TDBImage (you will need to add a TDataSource to assign the field to the TDBImage). In the BeforePrint event of the band that contains the TQRImage, assign the TDBImage's bitmap to the TQRImage's bitmap.
Example:
procedure TfrmImageTest.DetailBand1BeforePrint(Sender: TQRCustomBand;
var PrintBand: Boolean);
begin
qrimage1.picture.bitmap.assign(DBImage1.Picture.Bitmap);
end; If you are using a TQRImage and loading the image directly into the component does not work, try loading the image into a TBitmap and then copying the data to the TQRImage component.
Example 1:
MyBitmap.LoadFromFile(somefile); // MyBitmap is a TBitmap that is created and freed somewhere else
QRImage.Picture.Bitmap.Assign(MyBitmap);
Example 2:
MyBitmap.LoadFromFile(somefile);
QRImage.Picture.Bitmap.Height := MyBitmap.Height;
QRImage.Picture.Bitmap.Width := MyBitmap.Width;
QRImage.Picture.Bitmap.Canvas.Draw(0,0, MyBitmap);
|
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |