Esempio n. 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)
 {
     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);
     }
 }
Esempio n. 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);
     }
 }
Esempio n. 5
0
 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();
 }
Esempio n. 6
0
 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();
 }