我正在使用Access數據庫在VB.Net
中製作一張帶有圖片的註冊表單。利用下面的代碼,我得到一個錯誤。「System.Drawing.Image」無法轉換爲「一維數組」
Me.Student_instructorTableAdapter.Insert(txtname,txtpass, ***PictureBox1.Image***)
Me.Student_instructorTableAdapter.Fill(Me.DatabaseDataSet4.student_instructor)
MsgBox("Successfully added", MsgBoxStyle.Information)
的PictureBox1.Image
被保存到其拋出一個錯誤的Access數據庫(「圖片報」):
"System.Drawing.Image" cannot be converted to '1-dimensional array"
我應該用什麼來代替PictureBox1.Image
當我爲了避免異常調用Insert
?
不,你幾乎不需要可以轉換爲byte []的圖像流,並進入類型圖像的列。 –