示例#1
0
        private void btnDelete_Click(object sender, EventArgs e)
        {
            try
            {
                if (dgvUsers.CurrentRow != null)
                {
                    if (dgvUsers.SortedColumn != null)
                    {
                        sortedColumn  = dgvUsers.SortedColumn;
                        sortDirection = dgvUsers.SortOrder;
                    }

                    frmBankEntry fUser = new frmBankEntry((int)Constant.Mode.Delete, Convert.ToInt64(dgvUsers.CurrentRow.Cells["BankID"].Value));
                    fUser.ShowInTaskbar = false;
                    fUser.ShowDialog();
                    LoadList();
                    btnClear_Click(sender, e);


                    if (sortedColumn != null)
                    {
                        ListSortDirection LSD;
                        if (sortDirection == SortOrder.Ascending)
                        {
                            LSD = System.ComponentModel.ListSortDirection.Ascending;
                        }
                        else
                        {
                            LSD = System.ComponentModel.ListSortDirection.Descending;
                        }

                        dgvUsers.Sort(dgvUsers.Columns[sortedColumn.Name], LSD);
                    }
                    if (dgvUsers.CurrentRow != null && idgvPosition <= dgvUsers.RowCount)
                    {
                        if (dgvUsers.Rows.Count - 1 < idgvPosition)
                        {
                            dgvUsers.CurrentCell = dgvUsers.Rows[idgvPosition - 1].Cells[0];
                        }
                        else
                        {
                            dgvUsers.CurrentCell = dgvUsers.Rows[idgvPosition].Cells[0];
                        }
                    }
                    dgvUsers_SelectionChanged(sender, e);
                }
            }
            catch (Exception exc)
            {
                Utill.Common.ExceptionLogger.writeException("Godown", exc.StackTrace);
                MessageBox.Show(Utill.Common.CommonMessage.ExceptionMesg, "Exception");
            }
        }
示例#2
0
 private void btnNew_Click(object sender, EventArgs e)
 {
     try
     {
         frmBankEntry fUser = new frmBankEntry((int)Constant.Mode.Insert, 0);
         fUser.ShowInTaskbar = false;
         fUser.ShowDialog();
         LoadList();
         btnClear_Click(sender, e);
         dgvUsers_SelectionChanged(sender, e);
     }
     catch (Exception exc)
     {
         Utill.Common.ExceptionLogger.writeException("Bank", exc.StackTrace);
     }
 }