Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I've automated a timesheet process doing data collection via Access 2k,
building an excel 2k workbook via VBA containing individual timesheets which are then printed. I've used a .xlt template with one worksheet which I duplicate and rename for each employee. At the end I delete the templete worksheet, which pops up a Excel system msg 'the selected sheet(s) will be permanently deleted' with cmd btns 'ok or cancel'... The VB 'on error' keyword isn't being triggered as I have tried 'on error resume next' or forcing an error handler and 'displayalerts = false' without success. Is there a way to redirect/control this system msg as it is rather confusing to the end user. Any suggestion would be greatly appreciated! Thanks in advance. Doug |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
'displayalerts = false' must be changed
Application.DisplayAlerts = False ActiveWindow.SelectedSheets.Delete Application.DisplayAlerts = True Gord Dibben Excel MVP On Tue, 16 Nov 2004 22:56:44 GMT, "mike" wrote: I've automated a timesheet process doing data collection via Access 2k, building an excel 2k workbook via VBA containing individual timesheets which are then printed. I've used a .xlt template with one worksheet which I duplicate and rename for each employee. At the end I delete the templete worksheet, which pops up a Excel system msg 'the selected sheet(s) will be permanently deleted' with cmd btns 'ok or cancel'... The VB 'on error' keyword isn't being triggered as I have tried 'on error resume next' or forcing an error handler and 'displayalerts = false' without success. Is there a way to redirect/control this system msg as it is rather confusing to the end user. Any suggestion would be greatly appreciated! Thanks in advance. Doug |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I open an Excel file on XP system, saved on a Vista system | Excel Discussion (Misc queries) | |||
Error Msgs? | Excel Discussion (Misc queries) | |||
Out of Memory - Display err msgs | Setting up and Configuration of Excel | |||
Formula Pop Up Error Msgs | Excel Discussion (Misc queries) | |||
excel causing system to be in low system resource | Excel Discussion (Misc queries) |