If dataset.Tables("Employee").Rows(index)("Picture") IsNot DBNull.Value Then
Dim imgByte() As Byte = dataset.Tables("Employee").Rows(index)("Picture")
Dim imgstremam As New MemoryStream(imgByte)
Picture.Image = Image.FromStream(imgstremam)
ElseIf dataset.Tables("Employee").Rows(index)("Picture") Is DBNull.Value Then
Picture.Image = Nothing
End If
ด้านบนนี้ มันจะเป็นการอ่านค่าจาก dataset ("Employee") และแถวที่ index (ของผม index มีค่าพารามิเตอร์ส่งมาให้แล้วนะครับ) แต่ไม่มีค่าว่างใน column ("Picture") จะให้โชว์รูปอ่ะครับ
แต่ถ้ามีค่าว่างจะไม่ให้โชว์รูป