コード例 #1
0
 private void button2_Click(object sender, EventArgs e)
 {
     try
     {
         if (txtnombre.Text == "" || txtdireccion.Text == "" || txtciudad.Text == "" || txtprovincia.Text == "" || txtcodigopostal.Text == "" || txttelefono.Text == "")
         {
             MessageBox.Show("Debe Llenar los campos con * ");
         }
         else
         {
             conex.Open();
             MySqlCommand insert = new MySqlCommand("insert into addcliente values('" + txtid.Text + "','" + txtnombre.Text + "','" + txtdireccion.Text + "','" + txtapodo.Text + "','" + txtciudad.Text + "','" + txtprovincia.Text + "','" + txtcodigopostal.Text + "','" + txttelefono.Text + "','" + txtemail.Text + "','" + txtfax.Text + "','" + txtnotas.Text + "') ", conex);
             insert.ExecuteNonQuery();
             MessageBox.Show("Guardado Existoso", "Datos Guardado", MessageBoxButtons.OK);
             this.Hide();
             AgregarCliente adds = new AgregarCliente();
             adds.Show();
         }
     }
     catch
     {
         MessageBox.Show("Error no se pudo guardar los datos", "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
     conex.Close();
 }
コード例 #2
0
        private void button1_Click(object sender, EventArgs e)
        {
            AgregarCliente addcliente = new AgregarCliente();

            addcliente.Show();
        }