Exemplo n.º 1
0
 private void addWishListToolStripMenuItem_Click(object sender, EventArgs e)
 {
     frmEditWishListItem childform = new frmEditWishListItem(CurrentUser, PageMode.Add);
     childform.ShowDialog();
     initPage();
 }
Exemplo n.º 2
0
 private void editWishListToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (this.dgWishList.CurrentRow == null)
     {
         ShowError("Please select a row.", Form_Title);
     }
     else
     {
         frmEditWishListItem childform = new frmEditWishListItem(CurrentUser, PageMode.Edit);
         childform.ItemID = (long)Convert.ToDecimal(this.dgWishList.CurrentRow.Cells[0].Value);
         childform.ShowDialog();
         initPage();
     }
 }