Exemplo n.º 1
0
 public static Telerik.Reporting.HtmlTextBox CreateHTMLTxtDetail(string FieldName, int i)
 {
     Telerik.Reporting.HtmlTextBox txtHead = new Telerik.Reporting.HtmlTextBox();
     txtHead.Value = "=[" + FieldName + "]";
     //txtHead.Dock = DockStyle.Left;
     //txtHead.Name = FieldName;  
     txtHead.CanGrow = true;
     return txtHead;
 }
Exemplo n.º 2
0
 public static Telerik.Reporting.HtmlTextBox CreateTxtHeader(string FieldName, int i)
 {
     Telerik.Reporting.HtmlTextBox txtHead = new Telerik.Reporting.HtmlTextBox();
     txtHead.Value = FieldName;
     return txtHead;
 }