Month: August 2013

Mac – Paralles Desktop 8 Error Cannot run under a Virtual Machine

เมื่อเราใช้งาน windows 7-8 ผ่าน Paralles อาจจะประสบปัญหาเวลาจะใช้งาน app บางตัวที่ใช้กราฟฟิกหรือพวกเกมส์แล้วมันขึ้นว่าไม่สามารถเล่นได้เพราะเรากำลังรันโปรแกรมในโหมด Virtual Machine “Themida Sorry, this application cannot run under a Virtual Machine” ดังด้านล่าง วิธีแก้ให้เข้าไปใน Windows 7 or 8 หลังจากนั้นให้เปิด regedit ขึ้นมา วิธีการเปิดก็ง่ายในช่อง…

SQL SELECT CASE

เราสามารถใช้คำสั่ง CASE WHEN ELSE กำหนดเงื่อนไขให้กับ Field บาง Field ให้มีค่าตามที่ต้องการได้เช่นตัวอย่างด้านล่าง SELECT [OTDay], [OTMonth], [OTYear], [LoginName], [TimeIn], [TimeOut], [Holiday], [HeaderAccount], [FullName], [Department], CASE [Holiday] WHEN '0' THEN 100 WHEN '1' THEN 300…

DevExpress : Get ID from Detail Gridview

เมื่อเราใช้ Master Grid แล้วมี Detail Grid ซ้อนอยู่ในส่วนของ Master Grid เวลาจะเรียกใช้จะต้องทำภายใต้ OnInit protected void ASPxGridView2_Init(object sender, EventArgs e) { GridViewDataTextColumn colTotal = new GridViewDataTextColumn(); colTotal.Caption = "คงเหลือ"; colTotal.FieldName = "Total2"; colTotal.UnboundType…