Exemple #1
0
 private void SetEditText(string str_funcvalue)
 {
     this.Text = SchFunc.GetFuncLabel(str_funcvalue, ClientData.LogonUser.Oid);
     if (((this._o_input != null) && (this._o_input is ArrayList)) && ((this._o_input as ArrayList).Count >= 2))
     {
         (this._o_input as ArrayList)[1] = str_funcvalue;
     }
 }
Exemple #2
0
 public void SetInput(object o_in)
 {
     if (this.ucUser != null)
     {
         if (o_in is ArrayList)
         {
             this.Text          = SchFunc.GetFuncLabel((o_in as ArrayList)[1].ToString(), ClientData.LogonUser.Oid);
             this.str_funcvalue = (o_in as ArrayList)[1].ToString();
             this._o_input      = o_in;
         }
         this.ucUser.SetInput(o_in);
     }
 }
Exemple #3
0
 private void RuleCombo_KeyUp(object obj, KeyEventArgs kpeargs)
 {
     this.Text = SchFunc.GetFuncLabel(this.str_funcvalue, ClientData.LogonUser.Oid);
 }