private void button3_Click(object sender, EventArgs e) { try { string nombre = this.dataGridView1.CurrentRow.Cells[0].Value.ToString(); ventPadre.setConsulta(nombre); ventPadre.Show(); this.Dispose(); } catch { MessageBox.Show("No se selecciono ningun comercio"); } }
private void btn_Comercios_Click(object sender, EventArgs e) { COMERCIOS comercio_form = new COMERCIOS(this); this.Hide(); comercio_form.Show(); }