设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 1033|回复: 4
打印 上一主题 下一主题

[查询] 如何检测窗体报表或者查询表已经打开?

[复制链接]
跳转到指定楼层
1#
发表于 2002-12-5 20:11:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
[move]多谢指教![/move]
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏1 分享分享 分享淘帖 订阅订阅

点击这里给我发消息

2#
发表于 2002-12-5 20:47:00 | 只看该作者
MS自带的示例数据库北风里有一个ISLOADED函数,可能是你要的吧?我经常用。
3#
 楼主| 发表于 2002-12-5 21:27:00 | 只看该作者

有示例吗?

请上传!
4#
发表于 2002-12-5 21:36:00 | 只看该作者
Option Explicit

Function IsLoaded(ByVal strFormName As String) As Boolean
' Returns True if the specified form is open in Form view or Datasheet view.
   
    Const conObjStateClosed = 0
    Const conDesignView = 0
   
    If SysCmd(acSysCmdGetObjectState, acForm, strFormName) <> conObjStateClosed Then
        If Forms(strFormName).CurrentView <> conDesignView Then
            IsLoaded = True
        End If
    End If
   
End Function


Private Sub Form_Close()‘form suppliers

    ' Close Product List form and Products form if they are open.
    If IsLoaded("roduct List") Then DoCmd.Close acForm, "roduct List"
    If IsLoaded("roducts") Then DoCmd.Close acForm, "Products"
   
End Sub
5#
发表于 2003-7-18 01:43:00 | 只看该作者
或是直接使用IsLoaded属性:
If CurrentProject.AllForms("frmmain").IsLoaded = True Then
        Forms!frmMain.Form.Visible = False
End If
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2025-1-25 18:36 , Processed in 0.103366 second(s), 29 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表