Exemple #1
0
        private void btnEdit_Click(object sender, EventArgs e)
        {
            CreateEditLists EditListForm = new CreateEditLists(1, grdLists.Rows[grdLists.CurrentCell.RowIndex].Cells[0].Value.ToString());

            EditListForm.ShowDialog();
            listsGridLoad();
        }
Exemple #2
0
        private void btnNew_Click(object sender, EventArgs e)
        {
            CreateEditLists CreateListForm = new CreateEditLists(0);

            CreateListForm.ShowDialog();
            listsGridLoad();
        }