你打开第三方程序的代码是什么呢?如果文件已经和第三方程序关联了,可以直接:Dim Proc As New Process '定义一个新的ProcessProc.File = "C:\test.txt" '指定要打开的文件Proc.Start() 如果没有关联: Dim Proc As New ProcessProc.File = "C:\安装目录\Notepad.exe" '指定要执行的文件Proc.Arguments = "c:\table.txt" '指定要打开的文件Proc.Start()