private void Invoice_Load(object sender, EventArgs e) { txtTimeCurrent.Text = System.DateTime.Now.ToString(); } private void btSave_Click(object sender, EventArgs e) { tbl_AsInvoice inv = new tbl_AsInvoice(); inv.AsInvMDate = Convert.ToDateTime(txtTimeCurrent.Text); using (TransactionScope ts = new TransactionScope()) { db.tbl_AsInvoices.InsertOnSubmit(inv); db.SubmitChanges(); ts.Complete(); } }
private DateTime xx; private void Invoice_Load(object sender, EventArgs e) { xx = System.DateTime.Now; txtTimeCurrent.Text = xx.ToString(); } private void btSave_Click(object sender, EventArgs e) { tbl_AsInvoice inv = new tbl_AsInvoice(); inv.AsInvMDate = xx; using (TransactionScope ts = new TransactionScope()) { db.tbl_AsInvoices.InsertOnSubmit(inv); db.SubmitChanges(); ts.Complete(); } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง