Decompile syntax help ?

  • Thread starter Thread starter troubleD
  • Start date Start date
T

troubleD

i tried working on these syntax for decompiling:


"C:\Program Files\Microsoft Office\Office\MSACCESS.EXE"
"D:\2008-06-11\mydb.mdb" /decompile /wrkgrp /user adminUSR /pwd "123"
"D:\2008-06-11\mywrkgrp.mdw"

but the error shows it could not find the command and does not find the path
of
C:\Program Files\Microsoft Office\Office\ but this path works on my shortcut.

what have i done wrong?

thank you!
 
troubleD said:
i tried working on these syntax for decompiling:


"C:\Program Files\Microsoft Office\Office\MSACCESS.EXE"
"D:\2008-06-11\mydb.mdb" /decompile /wrkgrp /user adminUSR /pwd "123"
"D:\2008-06-11\mywrkgrp.mdw"

but the error shows it could not find the command and does not find the
path
of
C:\Program Files\Microsoft Office\Office\ but this path works on my
shortcut.

what have i done wrong?


It seems you've put yuor login credentials between the /wrkgrp switch and
the path to the workgroup file. Try this:

"C:\Program Files\Microsoft Office\Office\MSACCESS.EXE"
"D:\2008-06-11\mydb.mdb" /decompile
/wrkgrp "D:\2008-06-11\mywrkgrp.mdw" /user adminUSR /pwd "123"


Obviously, that all goes on one line.
 
thank you. :)

Dirk Goldgar said:
It seems you've put yuor login credentials between the /wrkgrp switch and
the path to the workgroup file. Try this:

"C:\Program Files\Microsoft Office\Office\MSACCESS.EXE"
"D:\2008-06-11\mydb.mdb" /decompile
/wrkgrp "D:\2008-06-11\mywrkgrp.mdw" /user adminUSR /pwd "123"


Obviously, that all goes on one line.

--
Dirk Goldgar, MS Access MVP
www.datagnostics.com

(please reply to the newsgroup)
 
Back
Top