EXCEL TOOLS
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
[code]
และปิดด้วย [/code]
ตัวอย่างเช่น [code]dim r as range[/code]
เพื่อให้แตกต่างจากข้อความทั่วไป สะดวกในการอ่านและทดสอบ (คลิกเพื่อดูตัวอย่างเพิ่มเติม)Code: Select all
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
If t >= Form1.Mint And t <= Form1.Maxt And h >= Form1.Minh And h <= Form1.Maxh = True Then
Temp_Cal_Rm_F2.BackColor = Color.RoyalBlue
PictureBox2.BackColor = Color.RoyalBlue
PictureBox3.BackColor = Color.RoyalBlue
' If t < Form1.Mint And t > Form1.Maxt Or h < Form1.Minh And h > Form1.Maxh Then
'Temp_Cal_Rm_F2.BackColor = Color.Maroon
'PictureBox2.BackColor = Color.Maroon
'PictureBox3.BackColor = Color.Maroon
End If
Application.DoEvents()
System.Threading.Thread.Sleep(1000)
MyBase.Refresh()
End Sub
If t >= Form1.Mint And t <= Form1.Maxt And h >= Form1.Minh And h <= Form1.Maxh = True
ในเบื้องต้นลองตรวจสอบว่าเข้าเงื่อนนี้หรือไม่ครับ