0

我的浏览按钮有这样的代码。

'将 dlg 作为新的 Microsoft.Win32.OpenFileDialog()
            ………………………………………………………………………………

            结果暗淡?作为布尔 = dlg.ShowDialog()
            如果结果 = True 那么
                暗淡文件名 As String = dlg.FileName
                brand_img.Source = 新位图图像(新 Uri(文件名))
                tpath.Text = 文件名
            万一

然后我想将该图像保存在我的数据库中。怎么可能?感谢他的帮助。我有一个像这样的保存按钮...

cn.ConnectionString = "Provider=Microsoft.Ace.Oledb.12.0; 数据源=" & My.Application.Info.DirectoryPath.ToString() & "\mvdata.accdb;"
            cn.Open()

            如果 rs.State = True 则 rs.Close()
            rs.Open("Select * from company", cn, ADODB.CursorTypeEnum.adOpenDynamic, ADODB.LockTypeEnum.adLockOptimistic)

            如果 textbrname.Text = "" 或 textbrdesc.Text = "" 那么
                terr.Foreground = Brushes.Red
                terr.Text = "请确保字段不为空。"
            别的
                rs.AddNew()
                rs("comp_imp").Value = ???????
                rs("comp").Value = textbrname.Text
                rs("comp_desc").Value = textbrdesc.Text
                rs.Update()
            万一
            rs.Close()
            cn.Close()

再次感谢您的帮助...

4

1 回答 1

0

http://www.sourcecodester.com/visual-basic-net/5090/phone-book-using-vbnet-ms-access-2003.html

this is a simple program which store image in database ..may be this is helpful to you,

于 2013-03-01T16:05:52.510 回答