//Boton eliminar private void btnEliminar_Click(object sender, EventArgs e) { ConexionBd bd = new ConexionBd(); String eliminar = string.Format("Delete from clientes where IdCliente='{0}'", IdCliente); SqlCommand comando = new SqlCommand(eliminar, bd.conectarbd); bd.abrir(); if (IdCliente != 0) { if (MessageBox.Show("Estas seguro que deseas eliminar?", "Mensaje", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { comando.ExecuteNonQuery(); MessageBox.Show("Se elimino correctamente..."); limpiar(this); } } bd.cerrar(); }
//Boton de busqueda private void btnBuscar_Click(object sender, EventArgs e) { List <Cliente> lista = new List <Cliente>(); ConexionBd bd = new ConexionBd(); string buscar = string.Format("select * from clientes where Apellido = '{0}'", txtApellido.Text); SqlCommand comando = new SqlCommand(buscar, bd.conectarbd); bd.abrir(); SqlDataReader reader = comando.ExecuteReader(); while (reader.Read()) { Cliente pCliente = new Cliente(); pCliente.Id = reader.GetInt32(0); pCliente.Nombre = reader.GetString(1); pCliente.Apellido = reader.GetString(2); pCliente.Fecha_Nac = reader.GetString(3); pCliente.Direccion = reader.GetString(4); lista.Add(pCliente); } bd.cerrar(); dataGridView.DataSource = lista; }