Decompile?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Steve

    #1

    Decompile?

    How do you decompile an AccessXP database? Can it be done from some external
    point without actually opening the database?

    Thank you!

    Steve


  • lyle fairfield

    #2
    Re: Decompile?

    "Steve" <sorry@private. emailaddresswro te in
    news:4RPLh.1451 8$tD2.10560@new sread1.news.pas .earthlink.net:
    How do you decompile an AccessXP database? Can it be done from some
    external point without actually opening the database?
    >
    Thank you!
    >
    Steve
    You could try opening another database and running this very old but should
    still work code:

    Public Sub Decompile(ByVal FullPath$)
    Shell SysCmd(acSysCmd AccessDir) & "msaccess.e xe " _
    & Chr(34) & FullPath & Chr(34) _
    & " /decompile", vbMaximizedFocu s
    End Sub

    Sub test()
    Decompile "C:\Documen ts and Settings\Lyle Fairfield\" _
    & "My Documents\Acces s\northwind.mdb "
    End Sub

    The test sub opens northwind.mdb in a decompiled state.


    --
    Lyle fairfield
    -
    Ceterum censeo Redmond esse delendam.
    -

    Comment

    • engles@ridesoft.com

      #3
      Re: Decompile?

      On Mar 20, 4:47 am, "Steve" <s...@private.e mailaddresswrot e:
      How do you decompile an AccessXP database? Can it be done from some external
      point without actually opening the database?
      >
      Thank you!
      >
      Steve
      "C:\Program Files\Microsoft Office 2003\OFFICE11\M SACCESS.EXE" "C:
      \directory\nort hwind.mdb" /decompile

      Use your path for MSACCESS and your path for the access db you want to
      decompile.

      This does leave the database open tho.

      Comment

      Working...