vb6 - Need to create a 30 second delay in Visual Basic - Stack Overflow
System.Threading.Thread.Sleep(30*1000) (@Moox my bad ;)) Note that calling this method in your UI-thread will hang the entire application while waiting for 30 seconds. A better alternative would be spawning a new thread for the code you want to execute. e...