Delete sheet from Excel VBA without warning

I know it is all around the net, this tip has been helping a lot in my VBA coding.
The funny part is that I don't use it much, but when I need it I have to go online and search for it.

So, smarty pants here decided to put it on my blog, and when searching, I can find it faster.

Application.DisplayAlerts=False
Sheet1.Delete
Application.DisplayAlerts=True


Unless if I will forget to come here before I search online. :-)
excel programming vbaxlman software developing