private void EditBtn_Click(object sender, EventArgs e) { var selectedRows = BaoCaoGrid.Rows.GetRowCount(DataGridViewElementStates.Selected); if (selectedRows == 0 || selectedRows > 1) { MessageBox.Show("Vui lòng chọn một báo cáo để thay đổi thông tin", "Thao tác", MessageBoxButtons.OK, MessageBoxIcon.Warning); } else { var id = int.Parse(BaoCaoGrid.SelectedRows[0].Cells[0].Value.ToString()); var form = new BaoCaoNgayForm(this, id); form.StartPosition = FormStartPosition.CenterScreen; form.Show(); } }
private void BaoCaoNgayBtn_Click(object sender, EventArgs e) { var form = new BaoCaoNgayForm(); form.Show(); }