前端之家收集整理的这篇文章主要介绍了
VB.NET 如何打开文件【加载到进程】,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
Dim str As String = "D:\my files\教案\电子书\高效能人士的七个习惯.chm" '
文件夹的路径 可使用相对路径实现 If File.Exists(str) Then System.Diagnostics.Process.Start(str) Else Msg
Box("sorry,the file is not exists!") End If