运行 app.SaveAsText 在安全的 Ms-Access 数据库中远程

Run app.SaveAsText remotely in a secured Ms-Access Database

我有一个 MS-Access 数据库,专门用于管理我的其他 MS-Access 数据库:)

我们称它为:AppManager

我在其中存储了有关我开发的其他数据库的信息。

-它们都有不同的工作组文件,用于根据 User/Group-

实施安全权限

.MDB/.MDW 的位置连同(管理员的)用户名和密码一起存储在我的 AppManager 中

备注:

现在我在 AppManager 中加入了各种功能: 例如查看 groups/users 信息、重置密码、其他自定义功能...等等

我正在尝试向 AppManager 添加新功能 这将使我能够远程导出任何这些数据库中的所有对象 - 从 AppManager 内部 -

这是这段代码:

    Function ConnectSecuredDB 
    ( MDBPath As String, MDWPath As String, UserName As String, Password As String) As Boolean

        Dim wsp As Workspace, db As Database, objEngine As DBEngine

        Set objEngine = New PrivDBEngine

        objEngine.SystemDB = MDWPath
        Set wsp = objEngine.CreateWorkspace("New", UserName, Password, dbUseJet)

        Set db = wsp.OpenDatabase(MDBPath)

        'I Do some stuff here...

        db.Close
        wsp.Close

        Set db = Nothing
        Set wsp = Nothing
    End Function

我需要将上面的代码与具有 Docmd、SaveAsText 方法的应用程序对象结合起来

喜欢这个取自 MSDN 的代码 - 但问题是它不处理安全的 mdw 数据库 -:

    Dim appAccess As Access.Application 

        Sub DisplayForm() 

        Dim strDB as String 

        ' Initialize string to database path. 
        Const strConPathToSamples = "C:\Program " _ 
    & "Files\Microsoft Office\Office11\Samples\" 

        strDB = strConPathToSamples & "Northwind.mdb" 

        ' Create new instance of Microsoft Access. 
        Set appAccess = _ 
        CreateObject("Access.Application") 

        ' Open database in Microsoft Access window. 
        appAccess.OpenCurrentDatabase strDB 

        ' Open Orders form. 
        appAccess.DoCmd.OpenForm "Orders" 
        End Sub

在我的例子中,我必须将最后一行替换为:

        With db.Containers("Modules")
          For Each doc In .Documents
            appAccess.SaveAsText acModule, doc.Name, "C:\temp\" & doc.Name & ".mod"
          Next doc
        End With
        'and repeat it with other objects reports, macros, ...

我的 ConnectSecuredDB 函数没有包含 Access.Application 对象

关于如何实现这个的任何想法?

我希望有解决方法。

谢谢

经过更广泛的搜索后,我设法想出了这个解决方案 灵感来自 "An Article" (我添加了自己的风格)

代码:

Dim app
Dim db As Database, doc As Document
Dim DBPath As String, MDWPath As String
Dim UserName As String, Password As String
Dim strRunCmd As String, msaccessPath As String

Set app = CreateObject("Access.Application")

DBPath = "D:\My Documents\myDb.mdb" 'full path of DB
MDWPath = "D:\My Documents\Secured.mdw" 'full path of Workgroup file
Username = "your User id" 'a legitimate user account (in the workgroup)
Password = "user's password" 

msaccessPath = "C:\Program Files\Office2003\Office11\msaccess.exe"

strRunCmd = """" & msaccessPath & """ """ & DBPath & """ /WRKGRP """ & MDWPath & """ /User """ & UserName & """ /Pwd " & Password
Shell strRunCmd, vbMaximizedFocus

Do
    Set app = GetObject(DBPath)
    DoEvents
Loop While app Is Nothing

Set db = app.CurrentDb

bkPath = "C:\Temp\bkDB\"
With db.Containers("Forms")
   For Each doc In .Documents
       app.SaveAsText acForm, doc.Name, bkPath & doc.Name & ".frm"
   Next doc
End With
'repeat the loop to other object types such as reports, modules, macros

'cleanup
app.CloseCurrentDatabase
app.Quit
Set app = Nothing

db.Close
Set db = Nothing