0

我是 VB.net 的新手,并且能够从用户指南编写测试程序,以便在从对话框中选择时在图片框中显示 .TIF。但是,当我尝试从文件名中选择 TIF 或其他类型的 JPG、GIF 等时,出现错误:

System.IO.filenotfoundException 在 System.Draawing.dll 中发生"

这是我的代码:

PicTif.Image = Image.FromFile("c:\test.tif")
4

1 回答 1

0

Check your spelling and see if the file does exist. You can protect your code.

Imports:

Imports System.IO

Code:

Dim path As String = "c:\test.tif"
If File.Exists(path) Then 
  PicTif.Image = image.FromFile(path)
End If
于 2013-10-03T18:12:14.173 回答