Hi!
This one worked out - the app.SysCmd takes strings. We used variables = variants. Go figure...
source = "sdfsdf.accdb"
target = "sdfsdf.accde"
app.SysCmd 603, source,target 'Dont work!
---- changed to ---
app.SysCmd 603, Cstr(source),Cstr(target) 'Worked out fine