Hi guys I have the next problem, I'm working with telerik reporting tool and I have some textboxes that shows some values from database, is it possible to change this values to uppercase if they are shown in lowercase? I mean if a text box shows "cristian" change it to "CRISTIAN"
I've tried the next in my Report1.designer.cs file
But nothing seems to work.
Hope your help.
I've tried the next in my Report1.designer.cs file
this.textBox1.Value = "Nombre del niño(a):{Fields.fcNomMenor+\" \"+ Fields.fcPatMenor+\" \"+ Fields.fcMatMen" +
"or}".ToUpper();
and
this.textBox1.Value.ToUpper( = "Nombre del niño(a):{Fields.fcNomMenor+\" \"+ Fields.fcPatMenor+\" \"+ Fields.fcMatMen" +
"or}");
Hope your help.