private void btnFind_Click(object sender, EventArgs e) { try { bool Rights = ClsModuleName.ChechRights(ClsLogin.LoginId, this.Tag, ClsModuleName.Rights.U_View.ToString()); if (Rights == false) { return; } Frm_Find F = new Frm_Find(); F.heading = "Customer Master"; F.StatementPass = "******"; F.ShowDialog(); ShowData(F.Id); } catch (Exception ex) { clsGeneral.ShowErrMsg(ex.Message); } }
private void btnFind_Click(object sender, EventArgs e) { Frm_Find F = new Frm_Find(); F.StatementPass = "******"; F.ShowDialog(); if (F.Id > 0) { ShowData(F.Id); } }
private void btnFind_Click(object sender, EventArgs e) { try { bool Rights = ClsModuleName.ChechRights(ClsLogin.LoginId, this.Tag, ClsModuleName.Rights.U_View.ToString()); if (Rights == false) { return; } //this.Visible = false; Frm_Find f = new Frm_Find(); f.heading = "Guarantors Master"; f.StatementPass = ""; f.StatementPass = "******"; f.ShowDialog(); //this.Visible = true; FillData(f.Id); } catch (Exception ex) { clsGeneral.ShowErrMsg(ex.Message); } }
private void btnFind_Click(object sender, EventArgs e) { try { bool Rights = ClsModuleName.ChechRights(ClsLogin.LoginId, this.Tag, ClsModuleName.Rights.U_View.ToString()); if (Rights == false) { return; } Frm_Find f = new Frm_Find(); f.heading = "Guarantors Master"; f.StatementPass = ""; f.StatementPass = "******"; f.ShowDialog(); ShowData(f.Id); } catch(Exception ex) { clsGeneral.ShowErrMsg(ex.Message); } }
private void guarToolStripMenuItem_Click(object sender, EventArgs e) { Frm_Find f = new Frm_Find(); f.heading = "Guarantors Master"; f.Text = "Guarantors List"; f.IsDialog = false; //f.F =new Frm_Gurantors(); f.StatementPass = "******"; f.Show(); }
private void customerListToolStripMenuItem_Click(object sender, EventArgs e) { Frm_Find F = new Frm_Find(); F.heading = "Customer Master"; F.Text = "Customer List"; F.IsDialog = false; //F.F = new Frm_Party(); F.StatementPass = "******"; F.Show(); }