While I update a well working project from Excel 2003 to 2007, one piece of code that is really troubling is me, is a save method.

vb Code:
  1. Application.DisplayAlerts = False
  2. Workbooks(splicedName).Save
  3. Workbooks(splicedName).Close (False)
  4. Application.DisplayAlerts = True

In 2003, this work fine, but in 2007, I get two name conflicts "wc13" and "wc15" that the user must click OK on to rename them. Can anyone explain these errors, or how to just get a default OK (though displayalerts worked, but guess not).

Thanks, and sorry if this has been asked before.