M
mjb267
I have the following code in a subroutine in a module:
Sub display()
Application.DisplayAlerts = False
Do Until Sheets.Count = 1
ActiveSheet.Delete
If Sheets.Count = 1 Then
Exit Do
End If
Loop
Application.DisplayAlerts = True
End Sub
When i run the applicaiton on my computer, everything works fine. Whe
i try to run in through internet explorer 6.0, it give me the erro
message
run-time error 1004. method 'displayalerts' of object '_application
failed.
any ideas what the problem could be?
apprieciate any help
Thank
Sub display()
Application.DisplayAlerts = False
Do Until Sheets.Count = 1
ActiveSheet.Delete
If Sheets.Count = 1 Then
Exit Do
End If
Loop
Application.DisplayAlerts = True
End Sub
When i run the applicaiton on my computer, everything works fine. Whe
i try to run in through internet explorer 6.0, it give me the erro
message
run-time error 1004. method 'displayalerts' of object '_application
failed.
any ideas what the problem could be?
apprieciate any help
Thank