▼ กำลังโหลดข้อมูล... ▼
แสดงความคิดเห็น
คุณสามารถแสดงความคิดเห็นกับกระทู้นี้ได้ด้วยการเข้าสู่ระบบ
กระทู้ที่คุณอาจสนใจ
อ่านกระทู้อื่นที่พูดคุยเกี่ยวกับ
การพัฒนาซอฟต์แวร์
วิศวกรรมคอมพิวเตอร์
วิทยาศาสตร์คอมพิวเตอร์
การพัฒนา Desktop Application
C# Timer แสดง MessageBox 2 ครั้ง อยากให้แสดงแค่ครั้งเดียวแก้ยังไงครับ
[open_code]
private void timer1_Tick(object sender, EventArgs e)
{
bool flag = false;
//timer1.Start();
WebClient client = new WebClient();
Stream stream = client.OpenRead("http://localhost/time.php");
StreamReader reader = new StreamReader(stream);
String content = reader.ReadToEnd();
//textBox1.Text = content;
if (content == "14:02")
{
if (!flag)
{
MessageBox.Show(new Form() { TopMost = true }, "หมดเวลาแล้ว");
flag = true;
}
}[/close_code]