REGEDIT4

;  This adds the ability to Right-Click on an MDB file
;  and get the Decompile / Compact options.
;
;  If it doesn't work for you, mail me and tell me about it.
;
;  Original version provided by
;  Jon Evans <jon@evansoft.demon.co.uk>
;  Copied from http://www.mvps.org/ccrp
;  as ocxdllreg.zip
;  Modified by
;  Dev Ashish <dash10@hotmail.com>

; ==========
; .MDB files
; ==========

[HKEY_CLASSES_ROOT\.mdb]
"Content Type"="application/x-msaccess"
@="Access.Application.8"
[HKEY_CLASSES_ROOT\Access.Application.8]
@="Microsoft Access Database"

[HKEY_CLASSES_ROOT\Access.Application.8\Shell\Decompile\command]
@="C:\\Program Files\\Microsoft Office\\Office\\MSAccess.exe \"%1\" /DECOMPILE"

[HKEY_CLASSES_ROOT\Access.Application.8\Shell\Compact\command]
@="C:\\Program Files\\Microsoft Office\\Office\\MSAccess.exe \"%1\" /COMPACT"

; End