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(); }