Hello,
I have a problem on my simple vb.net program. I bypass the next code block,
but when i put an messagebox the whole code is executed. So what I want to
accomplish is to put a delay on my program instead of a messagebox. Can you
help me to put a 5 secs. delay on my program. Maybe it will help execute the
whole code...
Paul G. Tobey [eMVP] - 16 May 2008 15:58 GMT
WHAT? Back up and tell us what the problem is and forget about trying to
hack together some patchwork fix...
Paul T.
> Hello,
>
[quoted text clipped - 6 lines]
> the
> whole code...
shadow-king - 21 May 2008 03:03 GMT
All I need is a single line of code that will delay an execution of the next
block of code, thank you.:)
>WHAT? Back up and tell us what the problem is and forget about trying to
>hack together some patchwork fix...
[quoted text clipped - 6 lines]
>> the
>> whole code...
Hosmerica - 16 May 2008 16:15 GMT
> Hello,
>
[quoted text clipped - 6 lines]
> the
> whole code...
System.Threading.Thread.Sleep(5000) '5000 milliseconds = 5 seconds
shadow-king - 21 May 2008 03:04 GMT
Thank you very much Hosmerica.... This is what I'm talking about....
>> Hello,
>>
[quoted text clipped - 3 lines]
>
>System.Threading.Thread.Sleep(5000) '5000 milliseconds = 5 seconds