Click here to Skip to main content
15,881,860 members

Comments by EveryNameIsTakenEvenThisOne (Top 10 by date)

EveryNameIsTakenEvenThisOne 16-Jun-16 20:53pm View    
There you go, glad you got it
EveryNameIsTakenEvenThisOne 16-Jun-16 10:04am View    
Wait

int timeOne = Convert.ToInt32(MinTextBoxFirst.Text);
Thread.Sleep(timeOne);

thats basically what I said,

just do 1000*60*timeOne

or TimeSpan.FromMinutes(timeOne)
EveryNameIsTakenEvenThisOne 16-Jun-16 10:03am View    
I don't know what timeOne even is assigned to.
EveryNameIsTakenEvenThisOne 16-Jun-16 9:53am View    
No. Either Sleep(1000ms * 60s * Minutes) or Sleep(TimeSpan.FromMinutes(Minutes))

EveryNameIsTakenEvenThisOne 16-Jun-16 9:49am View    
What's the problem? Just assign "Minutes" to whatever's in your TextBox.