private void button3_Click(object sender, EventArgs e) { Libro lb = new Libro(); DataTable dt = new DataTable(); lb.buscalibro(dt,"SELECT * FROM LIBROS"); dataGridView1.DataSource = dt; }
private void button1_Click(object sender, EventArgs e) { Libro lb = new Libro(); DataTable dt = new DataTable(); string texto = textBox1.Text; if (id_RADIOBUTTON.Checked) { try { Int32.Parse(textBox1.Text); } catch { MessageBox.Show("Ingreso algun dato que no es un numero, porfavor verifique!"); return; } lb.buscalibro(dt, "SELECT * FROM LIBROS WHERE ID_LIBRO = " + textBox1.Text); } else if (libro_RADIOBUTTON.Checked) lb.buscalibro(dt, "SELECT * FROM LIBROS WHERE NOMBRE = '" + textBox1.Text+"'"); else lb.buscalibro(dt, "SELECT * FROM LIBROS WHERE AUTOR = '" + textBox1.Text+"'"); dataGridView1.DataSource = dt; }
private void agregarLibro_Load(object sender, EventArgs e) { Libro lb = new Libro(); DataTable dt = new DataTable(); lb.buscalibro(dt,"SELECT * FROM LIBROS"); dataGridView1.DataSource = dt; textBox1.Focus(); }
private void DescripcionLibro_Load(object sender, EventArgs e) { txtLibro.Text = nombre; textBox1.Text = autor; textBox2.Text = estante; textBox3.Text = charola; Libro lib = new Libro(); DataRow row = lib.buscaDescripcion(id); txtDescripcion.Text = row[1].ToString(); pictureBox1.ImageLocation = row[2].ToString(); txtLibro.Focus(); }
public void agregaLibro(Libro objetoLibro) { ConexionBD bd = new ConexionBD(); SqlConnection conexion = bd.conectaConBD(); try { SqlCommand comando = new SqlCommand("INSERT INTO LIBROS VALUES('" + objetoLibro.numLibro + "','" + objetoLibro.Libroo + "','" + objetoLibro.materia + "','" +objetoLibro.autor+"','"+objetoLibro.coautor+"','"+ objetoLibro.fechaEntregar +"','"+objetoLibro.charola+"','"+objetoLibro.estante+ "')", conexion); comando.ExecuteNonQuery(); MessageBox.Show("Libro agregada correctamente!"); } catch (Exception e) { MessageBox.Show("Ocurrio un error durante el proceso de agregar la Libro, no se agrego ningun dato! \n \n " + e.ToString()); return; } finally { conexion.Close(); } }
private void btnEntrar_Click(object sender, EventArgs e) { toolStripProgressBar1.Value = 0; Libro Libro = new Libro(); Libro.Libroo = txtLibro.Text; Libro.numLibro = int.Parse(txtNumLibro.Text); Libro.materia = txtMateria.Text; Libro.fechaEntregar = DateTime.Parse(fechaEntregar.Text); Libro.autor = autor.Text; Libro.coautor = coautor.Text; Libro.charola = int.Parse(textBox1.Text); Libro.estante = int.Parse(textBox2.Text); Libro.descripcion = textBox3.Text; if (path != "") { Libro.path = path; try { System.IO.File.Copy(path, @"C:\SCB\SCB\Resources\" + nombre, true); } catch (Exception w) { MessageBox.Show("Error al copiar el archivo! \n\n\n\n" + w.ToString()); return; } } Libro.agregaLibro(Libro); toolStripStatusLabel1.Text = "Usuario agregado correctamente!"; toolStripProgressBar1.Value = 100; txtLibro.Text = ""; txtNumLibro.Text = ""; txtMateria.Text = ""; fechaEntregar.Text = ""; autor.Text = ""; coautor.Text = ""; textBox1.Text = ""; textBox2.Text = ""; txtNumLibro.Focus(); }
private void btnEntrar_Click(object sender, EventArgs e) { Libro Libro = new Libro(); Libro.Libroo = txtLibro.Text; Libro.numLibro = int.Parse(txtNumLibro.Text); Libro.materia = txtMateria.Text; Libro.fechaEntregar = DateTime.Parse(fechaEntregar.Text); Libro.autor = autor.Text; Libro.coautor = coautor.Text; Libro.charola = int.Parse(textBox1.Text); Libro.estante = int.Parse(textBox2.Text); Libro.agregaLibro(Libro); txtLibro.Text = ""; txtNumLibro.Text = ""; txtMateria.Text = ""; fechaEntregar.Text = ""; autor.Text = ""; coautor.Text = ""; textBox1.Text = ""; textBox2.Text = ""; txtNumLibro.Focus(); }