BeforeOpenProject

在打开项目之前执行,可以在此进行一些环境上的判断,决定是否打开项目。

e参数属性:

File:           字符型,表示正在打开的项目文件名称,含路径。
Cancel:          逻辑型,设为True,拒绝打开项目。
HideSplashForm: 逻辑型,设为True,关闭Foxtable的启动封面。


示例

假定需要在打开项目前,检查项目文件目录中,是否存在名为ip.txt的文件,如果不存在,就拒绝打开项目:

Dim s As String = FileSys.GetParentPath(e.File) & "\ip.txt"
If
FileSys.FileExists(s) = False Then
    e.Cancel =
True
   
e.HideSplashForm = True
    MessageBox.show(
"文件丢失,无法打开此项目.")
End
if


本页地址:http://www.foxtable.com/webhelp/topics/1615.htm