Is there a way to execute a DOS command (i.e. MD, CD...etc) from a from.
Thanks,
Fred
VBA has the equivalent of MD and CD built into it.
MkDir lets you make a directory.
CurDir tells you the current directory.
ChDir lets you change the current director (you'll need to use ChDrive if
you're trying to set a the current directory to a different drive).

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Is there a way to execute a DOS command (i.e. MD, CD...etc) from a from.
>
> Thanks,
> Fred