Opps here is the save to the database...
Dim fs As New IO.FileStream("C:\Documents and Settings\Administrator\My Documents\My Pictures\InDotLogoB.jpg", IO.FileMode.Open, IO.FileAccess.Read)
Dim imageData(fs.Length) As Byte
Dim intlen As Integer = fs.Length
Dim cn As New SqlClient.SqlConnection("server=(local);database=blobstuff;trusted_connection=yes"
fs.Read(imageData, 0, fs.Length)
fs.Close()
Dim cm As New SqlClient.SqlCommand("AddBlob", cn)
cm.Parameters.Add("@blob", SqlDbType.Image)
cm.Parameters("@blob"

.Direction = ParameterDirection.Input
cm.Parameters("@blob"

.Value = imageData
cm.CommandType = CommandType.StoredProcedure
cn.Open()
cm.ExecuteNonQuery()
HTH
Rob