/// <summary>
 /// obtain value of Textbox
 /// </summary>
 public FunctionTextbox(Textbox tb, string uniquename)
 {
     t=tb;
     if (uniquename == null)
         return;
     // We need to register this expression with the Textbox
     tb.AddExpressionReference(uniquename);
 }
 /// <summary>
 /// obtain value of Textbox
 /// </summary>
 public FunctionTextbox(Textbox tb, string uniquename)
 {
     t = tb;
     if (uniquename == null)
     {
         return;
     }
     // We need to register this expression with the Textbox
     tb.AddExpressionReference(uniquename);
 }