我将帮助文档放在FOXTABLE程序的同一文件夹内,程序应如何写?因为foxtable程序文件夹并非放在指定的路径下。 用下面的代码显然把路径限制死了。
Dim Proc As New Process '定义一个新的ProcessProc.File = "d:\foxtable\help.chm" '指定要打开的文件Proc.Start()
Dim Proc As New Process '定义一个新的ProcessProc.File = ApplicationPath & "\help.chm" '指定要打开的文件Proc.Start()
说明: ApplicationPath返回FoxTable主程序所在目录。