อยากให้ Form Refresh ตลอดเวลาทำยังไงอ่ะครับ ( Window App )
ใช้ Timer น่าจะได้น่ะครับ
Date :
2010-09-22 08:33:18
By :
webmaster
ช่วยแนะนำการใช้งานของ Timer ให้หน่อยครับ
Date :
2010-09-22 11:46:29
By :
HlongJuice
ช่วยแนำนำตัวอย่างโค๊ด การทำ timer มาประยุกต์ใช้ในการ Refresh หน่อยน่ะ ครับผมหา ใน google ก็ยังไม่เจออ่ะครับ หรือ แนะนำ Key word ในการเซิทก็ได้ครับ
ขอบคุณครับ
Date :
2010-09-22 21:25:17
By :
HlongJuice
this.Invalidate() ลองดูน่ะ
Date :
2010-09-22 22:03:30
By :
hamdeen
ใช้ receive event handler ของ Serial port เลยก็น่าจะได้นะครับ
Date :
2010-09-23 00:01:11
By :
nickyshox99
1. เปิด Form ลาก label กับ timer ลงใน form
แล้ว duble click ที่ timer จะ ได้ Event timer1_Trick
ในส่วนนี้ เขียน code ในส่วนการทำงาน ของคุณก็เขียน การดึงค่าและ binding control ไป
ของผม show เวลาใน label
private void timer1_Tick(object sender, EventArgs e)
{
label1.Text = DateTime.Now.ToString();
}
ใบ event form_load เขียนแบบนี้ properties ของ timer.inTerval ค่า 1000 = 1 sec
private void Timemer_Load(object sender, EventArgs e)
{
timer1 = new Timer();
timer1.Tick += new EventHandler(timer1_Tick);
timer1.Start();
}
Date :
2010-09-23 11:29:48
By :
superpheak
Timer แน่นอนสุดคับ
int i =0;
private void timer1_Tick(object sender, EventArgs e)
{
i +=1;
label1.Text = i.toString();
}
ลองดูแล้วจะเข้าใจมันคับ
Date :
2010-09-23 15:34:10
By :
Patzy
Timer สามารถกำหนดเวลาให้ทำงานทุก ๆ ครั้งที่เรากำหนดครับ เช่้นทำงานทุก ๆ 10 หรือ 20 วินาที
Date :
2010-09-27 10:24:36
By :
webmaster
Load balance : Server 00