Example #1
0
        private void damageDataGridView_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            DamageLossEntry damagelossentry = new DamageLossEntry(this, CommonConstant.DB_UPDATE);

            damagelossentry.Show();
        }
Example #2
0
        private void btnAdd_Click(object sender, EventArgs e)
        {
            DamageLossEntry damagelossentry = new DamageLossEntry(this, CommonConstant.DB_INSERT);

            damagelossentry.Show();
        }