Access自動刪除引用併自動重新添加引用的函數-判斷瞭32位及64位Windows和Office的多種情況
- 2017-07-23 19:46:00
- zstmtony 原創
- 5961
Access自動刪除指定的引用,然後再自動重新添加這箇引用的通用代碼-判斷瞭32位及64位Windows和32位Office及64位Office的多種情況
在編寫Access通用平颱或通用開髮庫時,或使用第三方控件或鏈接庫時,由於這箇開髮庫可能經常會更新,由於更新後,開髮庫的對象和屬性和方法都有所改變
必鬚要手工對這箇對象重新引用,如果一次兩次還可以手工操作,如果經常更新,就需要寫一箇通用刪除和添加引用的函數瞭
自動重新添加Ocx dll 等控件或鏈接庫的引用(DevlibOcx引用)
Option Compare Database
Option Explicit
Private Const POINTERSIZE As Long = 4
Private Const ZEROPOINTER As Long = 0
Const MAX_LEN = 200 '字符串最大長度
Private Declare Sub apiCopyMemory Lib "kernel32" Alias "RtlMoveMemory" (hpvDest As Any, hpvSource As Any, ByVal cbCopy As Long)
Private Declare Function GetSystemWow64Directory Lib "kernel32" Alias "GetSystemWow64DirectoryA" (ByVal lpBuffer As String, ByVal nSize As Long) As Long
Private Declare Function GetSystemDirectory Lib "kernel32" Alias "GetSystemDirectoryA" (ByVal lpBuffer As String, ByVal nSize As Long) As Long
'Access或Excel VBA或VB6判斷windows繫統是32位還是64位
'來判斷繫統是32bit還是64bit,主要通過API來實現,先在窗體模塊裡申明以下API定義:
Private Declare Function GetProcAddress Lib "kernel32" (ByVal hModule As Long, ByVal lpProcName As String) As Long
Private Declare Function GetModuleHandle Lib "kernel32" Alias "GetModuleHandleA" (ByVal lpModuleName As String) As Long
Private Declare Function GetCurrentProcess Lib "kernel32" () As Long
Private Declare Function IsWow64Process Lib "kernel32" (ByVal hProc As Long, bWow64Process As Boolean) As Long
'然後在窗體或模塊中再建立一箇判斷繫統是32位還是64位的函數,返迴值是佈爾值,如果繫統是32位,此函數返迴值是Flase 如果是64位,返迴值是True,函數代碼如下:
Public Function Is64bit() As Boolean
Dim handle As Long, bolFunc As Boolean
bolFunc = False
handle = GetProcAddress(GetModuleHandle("kernel32"), "IsWow64Process")
If handle > 0 Then
IsWow64Process GetCurrentProcess(), bolFunc
End If
Is64bit = bolFunc
End Function
'穫取64位 windows及32位windows繫統 的繫統目録 ,正常都是System32
Public Function GetSystemDir() As String
Dim sTmp As String * MAX_LEN '存放結果的固定長度的字符串
Dim nLength As Long '字符串的實際長度
Dim length As Long
Dim strPath As String
'穫得System目録
length = GetSystemDirectory(sTmp, MAX_LEN)
strPath = Left(sTmp, length)
GetSystemDir = strPath
End Function
'穫取64位windows繫統下32位的繫統目録 ,正常是SysWow64
Public Function GetSystemWow64Dir() As String
Dim sTmp As String * MAX_LEN '存放結果的固定長度的字符串
Dim nLength As Long '字符串的實際長度
Dim length As Long
Dim strPath As String
'穫得System目録
length = GetSystemWow64Directory(sTmp, MAX_LEN)
strPath = Left(sTmp, length)
GetSystemWow64Dir = strPath
End Function
'自動重新添加Ocx dll 等控件或鏈接庫的引用(DevlibOcx引用)
Public Function ReAddDevLibReference()
Dim ref As Reference
Dim strMDE As String
On Error Resume Next
strMDE = CurrentDb.Properties("MDE")
On Error GoTo 0
If strMDE = "" Then
#If Win64 Then
If Dir(GetSystemDir & "\DevLibOcx.dll") = "" Then
MsgBox GetSystemDir & "\DevLibOcx.dll 文件不存在,請檢查文件是否丟失!"
End If
#Else
If Is64bit Then
If Dir(GetSystemWow64Dir & "\DevLibOcx.dll") = "" Then
MsgBox GetSystemWow64Dir & "\DevLibOcx.dll 文件不存在,請檢查文件是否丟失!"
End If
Else
If Dir(GetSystemDir & "\DevLibOcx.dll") = "" Then
MsgBox GetSystemDir & "\DevLibOcx.dll 文件不存在,請檢查文件是否丟失!"
End If
End If
#End If
For Each ref In Application.References
If ref.FullPath Like "*DevLibOcx.dll" Then
Application.References.Remove ref
Exit For
End If
Next
#If Win64 Then ’ 64bit Office or 32bit Office Application.References.AddFromFile GetSystemDir & "\DevLibOcx.dll"
#Else
If Is64bit Then
Application.References.AddFromFile GetSystemWow64Dir & "\DevLibOcx.dll"
Else
Application.References.AddFromFile GetSystemDir & "\DevLibOcx.dll"
End If
#End If
End If
End Function
Access數據庫自身
- office課程播放地址及課程明細
- Excel Word PPT Access VBA等Office技巧學習平颱
- 將( .accdb) 文件格式數據庫轉換爲早期版本(.mdb)的文件格式
- 將早期的數據庫文件格式(.mdb)轉換爲 (.accdb) 文件格式
- KB5002984:配置 Jet Red Database Engine 數據庫引擎和訪問連接引擎以阻止對遠程數據庫的訪問(remote table)
- Access 365 /Access 2019 數據庫中哪些函數功能和屬性被沙箱模式阻止(如未啟動宏時)
- Access Runtime(運行時)最全的下載(2007 2010 2013 2016 2019 Access 365)
Access Activex第三方控件
- Activex控件或Dll 在某些電腦無法正常註冊的解決辦法(regsvr32註冊時卡住)
- office使用部分控件時提示“您沒有使用該ActiveX控件許可的問題”的解決方法
- RTF文件(富文本格式)的一些解析
- Access樹控件(treeview) 64位Office下齣現橫曏滾動條不會自動定位的解決辦法
- Access中國樹控件 在win10電腦 節點行間距太小的解決辦法
- EXCEL 2019 64位版(Office 2019 64位)早就支持64位Treeview 樹控件 ListView列錶等64位MSCOMMCTL.OCX控件下載
- VBA或VB6調用WebService(直接Post方式)併解析返迴的XML
Access ADP Sql Server等
- 早期PB程序連接Sqlserver齣現錯誤
- MMC 不能打開文件C:/Program Files/Microsoft SQL Server/80/Tools/Binn/SQL Server Enterprise Manager.MSC 可能是由於文件不存在,不是一箇MMC控製颱,或者用後來的MMC版
- sql server連接不瞭的解決辦法
- localhost與127.0.0.1區彆
- Roych的淺談數據庫開髮繫列(Sql Server)
- sqlserver 自動備份對備份目録沒有存取權限的解決辦法
- 安裝Sql server 2005 express 和SQLServer2005 Express版企業管理器 SQLServer2005_SSMSEE
文章分類
聯繫我們
聯繫人: | 王先生 |
---|---|
Email: | 18449932@qq.com |
QQ: | 18449932 |
微博: | officecn01 |