what is the syntax of delay (suspending for some seconds) in vc#?
like in c, ur just going to do in this way: delay(100000);

Recommended Answers

All 2 Replies

Thread.Sleep(100000);
Yuo have to add also: using System.Threading;

System.Threading.Thread.Sleep(30000);

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.