public void List_Option(ListOption pAction) { fAction = pAction; switch (fAction) { case ListOption.active: if (chk_notactive.Checked == true) { LoadData(CBundle_exten.NotActive(new DAL())); } else { LoadData(CBundle_exten.Active(new DAL())); } break; case ListOption.notactive: if (chk_notactive.Checked == true) { LoadData(CBundle_exten.NotActive(new DAL())); } else { LoadData(CBundle_exten.Active(new DAL())); } break; case ListOption.Search: if (txt_bundle_name.Text != "") { List <Bundle> list = new List <Bundle> { CBundle_exten.SearchName(txt_bundle_name.Text, new DAL()) }; LoadData(list); } else { LoadData(CBundle_exten.Active(new DAL())); } break; default: LoadData(CBundle_exten.Active(new DAL())); break; } }
public void SetAction(BtnEvent pAction, string pPkValue) { fAction = pAction; switch (fAction) { case BtnEvent.Open: btn_save.Text = "&CLOSE"; obj = CBundle_exten.PKId(pPkValue, new DAL()); this.EnableControls(false); break; case BtnEvent.New: btn_save.Text = "&SAVE"; obj = CBundle.GetNew; this.EnableControls(true); break; case BtnEvent.Edit: btn_save.Text = "&UPDATE"; obj = CBundle_exten.PKId(pPkValue, new DAL()); this.EnableControls(true); break; case BtnEvent.Delete: btn_save.Text = "CONFIRM\r\n&DELETE"; obj = CBundle_exten.PKId(pPkValue, new DAL()); this.EnableControls(false); break; case BtnEvent.Print: btn_save.Text = "&PRINT"; obj = CBundle_exten.PKId(pPkValue, new DAL()); this.EnableControls(false); break; } this.LoadData(); }
void txt_bundle_LookupUpdate(object sender, EventArgs e) { txt_bundle_name.LookupList = CBundle_exten.GetforLookup(new DAL()); }