0
frmSingleRecord.picImage.Image = DirectCast(sdr("photo_index"), Image)
此代碼是從我MysqlDataReader
和photo_index
是從我數據庫的Blob
。我從這段代碼中得到錯誤。DirectCast MySQL的BLOB到一個PictureBox
無法投射'System.Byte []'類型的對象來鍵入 'System.Drawing.Image'。
如果它有可能DirectCast
a Blob
來PictureBox我怎麼能這樣做的權利?如果沒有任何建議會很好!
不,它不是,也不可能用'CType'。 – GSerg
我怎樣才能用'CType'做到這一點? – TKGhoul
[將字節數據加載到圖片框]可能的副本(http://stackoverflow.com/questions/6869777/loading-byte-data-to-a-picture-box) – GSerg