设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

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

请问在ADP中如何用代码检测数据库窗口状态

[复制链接]
跳转到指定楼层
1#
发表于 2005-1-31 20:29:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
如题
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2005-1-31 21:46:00 | 只看该作者
Public function printProjectProperties() As BooleanDim x As Variant

For Each x In CurrentProject.Properties

    Debug.Print x.name, vbTab, x.Value

Nextend function 1 AccessVersion                          08.50

UseAppIconForFrmRpt                        0

StartupShortcutMenuBar                    

AppIcon                     

AllowSpecialKeys                           1

AllowToolbarChanges                        1

AllowBuiltInToolbars                       1

AllowFullMenus                             1

AllowShortcutMenus                         1

StartUpMenuBar                           

StartUpShowStatusBar                       1

StartUpShowDBWindow                        1  --- 这个就是你要的了,0代表隐藏

AppTitle                    项目名称

Row Limit                    10000

Use Default Connection File                0

Use Default Page Folder                    0

Show Values in Snapshot                    1

Show Values in Non-Indexed                 1

Show Values Limit                          1000

Themed Form Controls                       1

ProjVer                      35

Auto Compact                 0

Show Values in Indexed                     1

Show Values in Remote                      0

Show Values in Server                      0

Default Page Folder                       

Default Connection File                  

Build                        355

StartupForm                 启动窗体启动选项卡里的东西这里基本都有,不过值改变后要重新启动ADP才生效。另外,系统的“选项”中内容,可以通过Application.GetOption 和SetOption来读取和设置。
3#
发表于 2005-1-31 21:51:00 | 只看该作者
用currentProject.Properties("StartUpShowDBWindow")来读取和设置。对于错误处理(即有可能某些版本或者其他原因这个property不存在),那么可以按照NorthwindCS示例中的方法处理(这里是针对“启动窗体”属性)err_handler:

    Const conPropertyNotFound = 2473

    If Err = conPropertyNotFound Then

        CurrentProject.Properties.Add "StartupForm", startFormName

        ..........

    Else

        MsgBox Err.Number & Err.Description ....

    End If
4#
 楼主| 发表于 2005-2-1 03:07:00 | 只看该作者
谢谢!
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2025-1-4 05:51 , Processed in 0.136540 second(s), 28 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

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