以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  为什么在模式窗口的afterclos代码不执行  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=184290)

--  作者:fvcfox
--  发布时间:2022/12/1 11:16:00
--  为什么在模式窗口的afterclos代码不执行
If Vars("临时数字") = 100 Then
    Forms("PDF").Open
End If

--  作者:有点蓝
--  发布时间:2022/12/1 11:22:00
--  
msgbox(Vars("临时数字") )
If Vars("临时数字") = 100 Then
    Forms("PDF").Open
End If

--  作者:fvcfox
--  发布时间:2022/12/1 11:41:00
--  
是100,是不是Forms("PDF").Open这个PDF窗口是本窗口就不行
--  作者:有点蓝
--  发布时间:2022/12/1 11:47:00
--  
beforeclose 事件

If Vars("临时数字") = 100 Then
    e.cancel=true
End If