如何在VB.Net 2008中将Image字段绑定到PictureBox

时间:2009-10-28 17:53:08

标签: sql-server vb.net ado.net bind picturebox

我有一个带有图像字段的表,我需要绑定到System.Windows.Forms.PictureBox,我需要加载新图像o覆盖现有图像或使用ADO.NET数据集对象删除字段中的图像。 / p>

1 个答案:

答案 0 :(得分:0)

我在Form_Load事件中编写了这段代码:

Me.picCaptured.DataBindings.Add("Image", mbsPrimario, "PICFIELD", True, _
  Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)

并且工作正常。