设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

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

[基础应用] 打开工作簿时,能否用代码自动启用“信任对于Visual Basic项目的访问(V)”

[复制链接]
跳转到指定楼层
1#
发表于 2008-8-10 13:42:09 | 只看该作者 回帖奖励 |正序浏览 |阅读模式

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
5#
 楼主| 发表于 2008-8-17 01:25:23 | 只看该作者
原帖由 方漠 于 2008-8-12 15:02 发表
For your reference.

Public Function VBAccessAllowed()
'---------------------------------------------------------------------
' Functoion :       Test VBA security settings to see if we can modify ...

您好:请问上述代码应复制到什么地方?
4#
发表于 2008-8-12 15:02:38 | 只看该作者
For your reference.

Public Function VBAccessAllowed()
'---------------------------------------------------------------------
' Functoion :       Test VBA security settings to see if we can modify
'                   VBA code (caused by A new security setting in
'                   Excel 2002: Trust access to Visual Basic Project
' Synopsis:         If Version >= 10
'                       Try and set an object to a workbook project and
'                       test whether it works or not.
'                       If fail, show messgae and return False.
' Returns:          True/False - default True
'---------------------------------------------------------------------
Dim VBProject As Object ' as VBProject
    VBAccessAllowed = True
    If Val(Application.Version) >= 10 Then
        On Error Resume Next
        Set VBProject = ActiveWorkbook.VBProject
        If Err.Number <> 0 Then
            VBAccessAllowed = False
        End If
    End If
End Function


'写注册表,创建子键 HKEY_CURRENT_USER\Software\QDE\Defaults\Language
Sub RegWrite()
Dim SA, SB As String
SA = "HKCU\Software\QDE\Defaults\Language\"
SB = "REG_SZ"
RegistryKeyWrite SA, 888, SB
End Sub

'读注册表
Sub RegReader()
Dim SA As String
Dim Owsh
Dim OB
SA = "HKCU\Software\QDE\Defaults\Language\"
Set Owsh = CreateObject("WScript.Shell")
MsgBox Owsh.RegRead(SA)
End Sub

Public Function RegistryKeyWrite(ByVal KeyName As String, ByVal KeyValue, ByVal KeyType As String)
Dim Owsh
Set Owsh = CreateObject("WScript.Shell")
  Owsh.RegWrite KeyName, KeyValue, KeyType
    On Error GoTo 0
    RegistryKeyWrite = Err.Number = 0
    If Not RegistryKeyWrite Then
          MsgBox "Failed to Write REG.", vbInformation
    End If
End Function
3#
 楼主| 发表于 2008-8-12 14:15:13 | 只看该作者
如何操作?
2#
发表于 2008-8-11 00:24:35 | 只看该作者
设置注册表
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-26 03:41 , Processed in 0.100048 second(s), 30 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

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