我想把升级文件下载到项目所在文件夹再升级,升级路径如下这样写可以吗? ProjectPath & "RemoteFiles\"
要使用代码设置:
http://www.foxtable.com/webhelp/topics/2934.htm,比如AfterOpenProject事件
UpdatePath = ProjectPath & "RemoteFiles\"
If Syscmd.Project.Update(False,False) = False Then '如果没有升级
'后续其它代码
End If