我在vb2005中编码时难以搜索我的数据库存储图像。
我制作了一个员工系统,我用它来添加图片,与他的所有个人数据相同。
我想创建一个按钮,在mycomputer中查找文件,以便将图像存储在我的图片框中。
任何人都可以在此代码中帮助我。
提前感谢。
答案 0 :(得分:0)
如果您尝试在整个硬盘驱动器中搜索图像文件,可能需要查看此代码示例。
http://bytes.com/topic/net/answers/102603-searching-files-vb-net
答案 1 :(得分:0)
使用此:
using (FolderBrowserDialog browserdialog = new FolderBrowserDialog())
{
if (browserdialog.ShowDialog(this) == DialogResult.OK)
{
string ThisIsYourImageFileLocationString = browserdialog.SelectedPath;
}
}
你是最终用户将打开一个小窗口,他将导航到他想要添加的图片。然后,这只是编码问题:
pictureBox1.Image = ThisIsYourImageFileLocationString;
答案 2 :(得分:0)
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Using dlg As New OpenFileDialog
dlg.Filter = "Image Files (*.jpg,*.gif,*.bmp)|*.jpg;*.gif;*.bmp"
dlg.Title = "Select an image file"
If dlg.ShowDialog = Windows.Forms.DialogResult.OK Then
Me.PictureBox1.Image = Image.FromFile(dlg.FileName)
End If
End Using
End Sub