C carlos.cruz Oct 6, 2003 #1 Hi, How can I delete a worksheet in excel without the prompting window? Thanks Carlos Cruz
N Nice Chap Oct 6, 2003 #2 You need to use VBA, Access the WorkSheets collection and Call Delete method there. Hi, How can I delete a worksheet in excel without the prompting window? Thanks Carlos Cruz
You need to use VBA, Access the WorkSheets collection and Call Delete method there. Hi, How can I delete a worksheet in excel without the prompting window? Thanks Carlos Cruz
A Armin Zingler Oct 6, 2003 #3 Hi, How can I delete a worksheet in excel without the prompting window? Click to expand... Using VB.NET?
Hi, How can I delete a worksheet in excel without the prompting window? Click to expand... Using VB.NET?
F Fergus Cooney Oct 6, 2003 #4 Hi Carlos, Assuming that you just want to know about the prompt disabling, and not about the deletion, you could give this a go. oExcel = New Excel.Application oExcel.DisplayAlerts = False Or do you need to know about deleting as well? Regards, Fergus
Hi Carlos, Assuming that you just want to know about the prompt disabling, and not about the deletion, you could give this a go. oExcel = New Excel.Application oExcel.DisplayAlerts = False Or do you need to know about deleting as well? Regards, Fergus