I’ve written the following macro that extracts certain fields from a project to an Access database for further analysis. I would like to avoid having the Append Overwrite Cancel window appear and simply overwrite the existing database. Is there a variable I can pass to suppress this message (something similar to docmd.setwarnings false in Access)?
SelectTaskColumn Column:=”Name”
OutlineShowTasks OutlineNumber:=pjTaskOutlineShowLevel9
FileSaveAs Name:=””, _
FormatID:=”MSProject.MDB8″, _
Backup:=True, _
map:=”Deployment Conflicts”
Application.Quit SaveChanges:=pjDoNotSave
Thanks,
Vernon