Are there any Timeout.bas
equivalents for Visual Basic using Visual Studio 2010
I have this file called timeout.bas that I could add to projects in earlier versions of visual basic that basically let me use the code:
Timeout .5
I'm trying to get the same kind of file for Visual Studio 2010
So I can write code such as:
Label1.text = "hello"
Timeout 1
label1.text = "good day!"
It's basically just a pause or delay.... Thanks in advance!