private void btnTitulos_Click(object sender, EventArgs e) { if (dataGridView1.SelectedRows.Count == 0) { MessageBox.Show("Selecione um registro !", "Informação", MessageBoxButtons.OK, MessageBoxIcon.Information); return; } FormExcelTitulos frmExcelTitulos = new FormExcelTitulos(); frmExcelTitulos.zCodExcel = Convert.ToInt32(dataGridView1.SelectedRows[0].Cells["COD_EXCEL"].Value.ToString()); frmExcelTitulos.ShowDialog(); }
private void btnTitulos_Click(object sender, EventArgs e) { FormExcelTitulos frmExcelTitulos = new FormExcelTitulos(); frmExcelTitulos.ShowDialog(); }