以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  如何用计划管理,实现窗口1、窗口2交替显示  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=85717)

--  作者:xxcwdlwgo
--  发布时间:2016/6/1 17:26:00
--  如何用计划管理,实现窗口1、窗口2交替显示
如何用计划管理,实现窗口1、窗口2交替显示?


--  作者:大红袍
--  发布时间:2016/6/1 17:28:00
--  

 Static i As Integer = 0

If i = 0 Then

    Forms("窗口1").Show

    i = 1

Else  

    Forms("窗口2").Show

    i = 0

End If


--  作者:xxcwdlwgo
--  发布时间:2016/6/1 17:49:00
--  
明白了,谢谢