Good morning to all. I am using Access 2003 and VBA to unencrypt a local file. It is working very well but the DOS window appears during the unencryption process. I would like not to see this window during the transformation. Here is the code I am using which is working fine with the exception of seeing the DOS window:
dosCmd = "cipher /a /d /s:" & attachment_1
ReturnCode = Sh.Run(dosCmd, 1, True + vbHide)
Thank you and have a beautiful day.
dosCmd = "cipher /a /d /s:" & attachment_1
ReturnCode = Sh.Run(dosCmd, 1, True + vbHide)
Thank you and have a beautiful day.