I created a status bar that works off of application.wait. In a sense, that worked quite well. However, I want to be able to update the status bar while working on other w
Use this delay function instead of Application.Wait
Application.Wait
Private Sub delay(seconds As Long) Dim endTime As Date endTime = DateAdd("s", seconds, Now()) Do While Now() < endTime DoEvents Loop End Sub