VB.Net
我正在使用 Access 数据库制作带有图片的注册表单。使用以下代码,我收到错误消息。
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”无法转换为“一维数组”
为了避免异常PictureBox1.Image
,我应该在调用时使用什么来代替?Insert