예제 #1
0
 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)
 {
     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)
 {
     Frm_Find F = new Frm_Find();
     F.StatementPass = "******";
     F.ShowDialog();
     if (F.Id > 0)
     {
         ShowData(F.Id);
     }
 }
예제 #4
0
 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);
     }
 }