Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

newline in crystal reports

Status
Not open for further replies.

mhs377

Programmer
Aug 10, 2010
21
IR
I'm going to display some fields into one single field
for example:
string s = fields.field1 + " , " fields.field2

but I want to show them like this
fields.field1
fields.field2

that both fields are in one another field
how can I do that?

thanks
 
You do not really need to use a variable, but sticking with your method.

string s = fields.field1 + chrw(13)+ fields.field2

Ian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top