InsertPicture from PictureBox to SQL Table Using VB Net

[Mã code 783]
  1 Đánh giá    Viết đánh giá
 54      1962      34
Phí tải: Miễn phí
Danh mục
Thể loại
Nhóm code
Ngày đăng
18-10-2015
Loại file
Full code
Dung lượng
...

Insert Picture from PictureBox to SQL Table Using VB Net, Lưu ảnh từ PictureBox vào SQL với VB.net


MÔ TẢ CHI TIẾT
' Load picture from computer to PICTUREBOX 
 
Private Sub btnPicture_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPicture.Click
        Dim a As OpenFileDialog = New OpenFileDialog
        a.Filter = ("Image Files|*.*|Bitmap|*.bmp|GIF|*.gif|Icon|*.ico|JPEG|*.jpg|PNG|*.png")
        If a.ShowDialog() = Windows.Forms.DialogResult.OK Then
            PictureBox1.Image = Image.FromFile(a.FileName)
            PictureBox1.SizeMode = PictureBoxSizeMode.StretchImage
        End If
    End Sub
 
 
 ' then
 ' InsertPicture from PictureBox to SQL Table, if no Picture insert NULL value
 
Private Sub btnSavePicture_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSavePicture.Click
       If Not PictureBox1.Image Is Nothing Then
            Dim picStream As New MemoryStream
            PictureBox1.Image.Save(picStream, Imaging.ImageFormat.Png)
            PicByte = picStream.GetBuffer()
            cmd.Parameters.Add(New SqlParameter("@Picture", SqlDbType.Image)).Value = PicByte
        Else
            cmd.Parameters.Add(New SqlParameter("@Picture", SqlDbType.Image)).Value = Convert.DBNull
        End If
        Try
            Me.conn.Open()
            cmd.ExecuteNonQuery()
            conn.Close()
            MsgBox("Insert data to Database successful!")
        Catch ex As SqlException
            conn.Close()
            MsgBox(ex.ToString)
    End Sub
 

 

 

Nguồn: Sharecode.vn



HƯỚNG DẪN CÀI ĐẶT
 
 
LINK DOWNLOAD

... [...]

File đã kiểm duyệt
     Báo vi phạm bản quyền
Pass giải nén (Nếu có):
sharecode.vn
DOWNLOAD
(Miễn phí)
Bạn có code hay
ĐĂNG BÁN NGAY

BÌNH LUẬN



ĐÁNH GIÁ


ĐIỂM TRUNG BÌNH

5
1 Đánh giá
Code rất tốt (1)
Code tốt (0)
Code rất hay (0)
Code hay (0)
Bình thường (0)
Thành viên
Nội dung đánh giá
14:03 - 8/6/2017
Code rất tốt
Code rất tốt và phù hợp để phát triển

 HỖ TRỢ TRỰC TUYẾN