//dgSource ต้นฉบับ //dgNew ใหม่ foreach (DataGridViewColumn dgvc in dgSource.Columns) { dgNew.Columns.Add(dgvc.Clone() as DataGridViewColumn); } DataGridViewRow row = new DataGridViewRow(); for (int i = 0; i < dgSource.Rows.Count; i++) { row = (DataGridViewRow)dgSource.Rows[i].Clone(); int intColIndex = 0; foreach (DataGridViewCell cell in dgSource.Rows[i].Cells) { row.Cells[intColIndex].Value = cell.Value; intColIndex++; } dgNew.Rows.Add(row); } dgNew.AllowUserToAddRows = false; dgNew.Refresh();
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง