public void GenOrderID() { string constr = Properties.Settings.Default.DatabaseCarserviceConnectionString; OleDbConnection conn = new OleDbConnection(constr); OleDbCommand Cmd; OleDbDataReader Dr; string sql = "Select MAX(Cus_ID) AS Cus_ID From [Customer]"; Cmd = new OleDbCommand(sql, conn); Dr = Cmd.ExecuteReader(); Dr.Read(); if (Dr.HasRows) { Dr.Read(); int i; i = Convert.ToInt32(Dr["Bill_No"]) + 1; txtAddID.Text = i.ToString("00000000"); } else { txtAddID.Text = "00000001"; } Dr.Close(); txtAddID.Enabled = false; }
Dr = Cmd.ExecuteReader() if( Dr.Read() ) { int i; i = Convert.ToInt32(Dr["Bill_No"]) + 1; txtAddID.Text = i.ToString("00000000"); } else { txtAddID.Text = "00000001"; } Dr.Close()
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง