예제 #1
0
        private void label2_Click(object sender, EventArgs e)
        {
            LibrosF n = new LibrosF(null);

            n.Show();
            this.Hide();
        }
예제 #2
0
        private void dgvLibros_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            String id = dgvLibros.Rows[e.RowIndex].Cells[16].Value + "";

            if (e.ColumnIndex == 18)
            {
                LibrosF n = new LibrosF(id);
                n.Show();
            }
            else
            {
                Busqueda n = new Busqueda(id);
                n.Show();
            }
            this.Hide();
        }