전체 글 썸네일형 리스트형 [C#] Timer 사용 //버튼 클릭 시 타이머 시작 private void beforebt_Click(object sender, EventArgs e) { timer1.Enabled = true; // timer1_Tick 실행시 먼저 true로 설정 timer1.Tick += new EventHandler(timer1_Tick); if (BeforeCompare) { BeforeSettingProc(); } } void timer1_Tick(object sender, EventArgs e) { timer1.Interval = 1000; TimerSecond++; if (t3.Minutes == TimerMin && t3.Hours == TimerHour) { //Sound play todo MessageBox.Show("s.. 더보기 [C#] TextBox에 입력받은 문자열이 숫자 인지 판별 private void okbt_Click(object sender, EventArgs e) { MealShowProc(); if (TextBoxNullCheck()) { if (Char.IsDigit(Hourtb.Text, 0) && Char.IsDigit(mintb.Text, 0))//TextBox가 숫자인지 검사 { SettingTimer(); TimesettingHide(); SoundButtonShow(); } else { MessageBox.Show("Only Interger Press"); return; } } else { MessageBox.Show("Input Check"); } } 더보기 SMI (WindowMobile Programming) 보호되어 있는 글입니다. 더보기 이전 1 ··· 24 25 26 27 28 29 30 ··· 38 다음