SQlLoadImage


DataRow的一个方法,用于从二进制列中提取图片。

语法:

SQlLoadImage(Field)

Field:  字符型,二进制列的列名

如果成功提取图片,返回一个Image,否则返回Nothing。

示例

 

下面的代码可以从员工表的照片列提取图片并显示在窗口的PictureBox控件中:

 

If Forms("窗口1").Opened Then '如果窗口已经打开

    Dim pbx As WinForm.PictureBox = Forms("窗口1").Controls("PictureBox1")

    If Tables("员工").Current Is Nothing Then

        pbx.Image = Nothing

    Else

        pbx.Image = Tables("员工").Current.DataRow.SQlLoadImage("照片") '从后台提取照片并显示

    End If

End If


本页地址:http://www.foxtable.com/webhelp/topics/2953.htm