Exemplo n.º 1
0
        private void txtRegistrarProveedor_Click(object sender, EventArgs e)
        {
            PantallaInventario pp = new PantallaInventario();

            pp.Show();
            this.Hide();
        }
Exemplo n.º 2
0
        private void checkBox1_CheckedChanged(object sender, EventArgs e)
        {
            PantallaInventario pi = new PantallaInventario();

            pi.LlenarTablaInventarioTelevisor(dataGridView1);

            if (checkBox1.Checked == false)
            {
                pi.LlenarTablaInventario(dataGridView1);
            }
        }
Exemplo n.º 3
0
        private void PantallaInventario_Load(object sender, EventArgs e)
        {
            PantallaInventario pi = new PantallaInventario();

            pi.LlenarTablaInventario(dataGridView1);
        }