private void pbAdd_Click(object sender, EventArgs e) { P1A01_CUSTOMER_SUB sub = new P1A01_CUSTOMER_SUB(); sub.lblTitle.Text = sub.lblTitle.Text + "[추가]"; sub.parentWin = this; sub.ShowDialog(); }
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (G.Authority == "D") { return; } if (e.RowIndex < 0) { return; } if (e.ColumnIndex != 3) { return; } P1A01_CUSTOMER_SUB sub = new P1A01_CUSTOMER_SUB(); sub.lblTitle.Text = sub.lblTitle.Text + "[수정]"; sub.parentWin = this; sub.ShowDialog(); }