I have two Command Buttons like these:
Private Sub CommandButton1_Click()
CommandButton1.BackColor = vbRed
Application.Wait (Now + TimeValue("00:00:15"))
CommandButton1.BackColor = vbYellow
End Sub
'______________________________________________
Private Sub CommandButton2_Click()
CommandButton2.BackColor = vbBlue
End Sub
I'd like to run CommandButton2 while CommandButton1 is running.
does anyone have any ideas?