![]() |
Deleting Excel Message/Dialog Boxes
Putting the following line of code near the top of your module will stop all
warning boxes from appearing: Application.DisplayAlerts=False Then at the end, place: Application.DisplayAlerts=True HTH Mike -- Michael J. Malinsky "Rob" wrote in message ... Hi, I am writing a VB macro for Excel 2000 and a step in it deletes a worksheet in the file. When macro runs during this step a dialog or message box appears stating that 'Selected Sheet will be permanently deleted, OK, Cancel.' If user selects 'OK' the macro continues but if they hit 'Cancel' the macro fails. Does anyone know of if it is possible to write a code so that this dialog box does not appear? Or any other way to bypass it? Thanks for any assistance/advise |
Deleting Excel Message/Dialog Boxes
Hi,
I am writing a VB macro for Excel 2000 and a step in it deletes a worksheet in the file. When macro runs during this step a dialog or message box appears stating that 'Selected Sheet will be permanently deleted, OK, Cancel.' If user selects 'OK' the macro continues but if they hit 'Cancel' the macro fails. Does anyone know of if it is possible to write a code so that this dialog box does not appear? Or any other way to bypass it? Thanks for any assistance/advise |
Deleting Excel Message/Dialog Boxes
Hi Rob
Application.DisplayAlerts = False Activesheet.Delete Application.DisplayAlerts = True -- Regards Ron de Bruin (Win XP Pro SP-1 XL2000-2003) www.rondebruin.nl "Rob" wrote in message ... Hi, I am writing a VB macro for Excel 2000 and a step in it deletes a worksheet in the file. When macro runs during this step a dialog or message box appears stating that 'Selected Sheet will be permanently deleted, OK, Cancel.' If user selects 'OK' the macro continues but if they hit 'Cancel' the macro fails. Does anyone know of if it is possible to write a code so that this dialog box does not appear? Or any other way to bypass it? Thanks for any assistance/advise |
Deleting Excel Message/Dialog Boxes
Hi
try the following sub foo() ..... application.DisplayAlerts = False 'your code to delete something application.DisplayAlerts = True .... end sub -- Regards Frank Kabel Frankfurt, Germany Rob wrote: Hi, I am writing a VB macro for Excel 2000 and a step in it deletes a worksheet in the file. When macro runs during this step a dialog or message box appears stating that 'Selected Sheet will be permanently deleted, OK, Cancel.' If user selects 'OK' the macro continues but if they hit 'Cancel' the macro fails. Does anyone know of if it is possible to write a code so that this dialog box does not appear? Or any other way to bypass it? Thanks for any assistance/advise |
Deleting Excel Message/Dialog Boxes
DisplayAlerts = False. Don't forget to reset to = True.
Ed "Rob" wrote in message ... Hi, I am writing a VB macro for Excel 2000 and a step in it deletes a worksheet in the file. When macro runs during this step a dialog or message box appears stating that 'Selected Sheet will be permanently deleted, OK, Cancel.' If user selects 'OK' the macro continues but if they hit 'Cancel' the macro fails. Does anyone know of if it is possible to write a code so that this dialog box does not appear? Or any other way to bypass it? Thanks for any assistance/advise |
All times are GMT +1. The time now is 10:21 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com