private void btnAdd_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(this.txtName.Text)) { MessageBox.Show("Please input (Name)"); this.txtName.Focus(); return; } if (string.IsNullOrEmpty(this.txtEmail.Text)) { MessageBox.Show("Please input (Email)"); this.txtEmail.Focus(); return; } SqlCeConnection myConnection = default(SqlCeConnection); //myConnection = new SqlCeConnection("Data Source =" + (System.IO.Path.GetDirectoryName( System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase ) + "\\AppDatabase1.sdf;")); myConnection = new SqlCeConnection("Data Source =C:\\WindowsFormsApplication\\WindowsFormsApplication\\Database1.sdf;"); myConnection.Open(); SqlCeCommand myCommand = myConnection.CreateCommand(); myCommand.CommandText = "INSERT INTO [mytable] ([name], [email]) VALUES " + " ('" + this.txtName.Text + "','" + this.txtEmail.Text + "' ) "; myCommand.CommandType = CommandType.Text; myCommand.ExecuteNonQuery(); myConnection.Close(); MessageBox.Show("Save Successfully"); this.Hide(); frmHome f = new frmHome(); f.Show(); }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง