[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

How do I make a simple countdown timer in visual studios??? I

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 9
Thread images: 1

File: timer.png (2KB, 204x88px) Image search: [Google]
timer.png
2KB, 204x88px
How do I make a simple countdown timer in visual studios??? I want it to be a 48 hour countdown clock and it starts automatically when my program runs.

>all these nigger tutorials on youtube using a fucking button to start the clock and everything is outdated.
>>
>>60360168
Put down the ransomware for dummies tutorial, Alexei.
>>
>>60360190
its a running program to help me run

>training for the marines
>>
Do you want to know how to make a Bitcoin address too?
>>
>>60360168
I believe the timer itself is easy, but windows forms aren't thread safe, so you have to create a separate thread for the timer, and do some invoking.
have fun accidentally encrypting your own drive.
>>
>>60360168
Just use a timer control you shitter. Visual Studio was made to be simple as fuck, stop overcomplicating things.
>>
>>60360168
Do you mean visual basic?
>>
Dim m as integer
Dim s as integer
For m = 59 to 0 step -1
For s = 59 to 0 step -1
print m & ":" & s
Next s
Next m
>>
>>60360168

probably the gayest timer i could think of

static DateTime start;
static Timer timer;
public static void Main(string[] args)
{
start = DateTime.Now.AddHours(48);
timer = new Timer(1000);
timer.Elapsed += (o,s) => ShowTime();
timer.Start();
Console.ReadKey();
}

static void ShowTime()
{
TimeSpan time = start - DateTime.Now;
Console.WriteLine($"{time.Hours}:{time.Minutes}:{time.Seconds}");
}
Thread posts: 9
Thread images: 1


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.