to UpperCase

Stimulsoft Reports.NET discussion
Post Reply
leif
Posts: 8
Joined: Sun Oct 21, 2007 4:17 pm

to UpperCase

Post by leif »

How do I change the text in some datafields to UpperCase?
Best regards
Leif Linding
Brendan
Posts: 309
Joined: Sun Jul 16, 2006 12:42 pm
Location: Ireland

to UpperCase

Post by Brendan »

You can use the built-in string functions for .NET

Code: Select all

{Customers.CustomerName.ToUpper()}
Or you can use the built-in string functions for StimulReport

Code: Select all

{ToUpperCase("joe bloggs")}
Post Reply