我有以下代码可以在我的 PC 上从 Visual Basic 表单中搜索图像,然后将其保存在数据库中,但是在打开搜索图像的对话框时我只收到一个错误。代码如下:
Private Sub AbrirImagen()
Dim filename As String
Dim openfiler As New OpenFileDialog
With openfiler
.InitialDirectory = "C:\"
.Filter = "Archivos de imágen(*.jpg)|*.jpg|All Files (*.*)|*.*"
.FilterIndex = 1
.RestoreDirectory = True
End With
If openfiler.ShowDialog = Windows.Forms.DialogResult.OK Then
filename = openfiler.FileName
Me.PictureBox1.Image = Image.FromFile(filename)
End If
End Sub
在说Windows.Forms
我收到以下错误的部分中:
“表单”不是“Windows”的成员
你可以帮帮我吗?我在 Visual Studio 2015 中工作
如果您检查文档
Form.DialogResult(属性)
你会看到你应该定义
在表格的开头,然后在代码中