Aug 22, 2010 #1 mhs377 Programmer Joined Aug 10, 2010 Messages 21 Location 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
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
Aug 22, 2010 #2 IanWaterman Programmer Joined Jun 26, 2002 Messages 3,511 Location GB You do not really need to use a variable, but sticking with your method. string s = fields.field1 + chrw(13)+ fields.field2 Ian Upvote 0 Downvote
You do not really need to use a variable, but sticking with your method. string s = fields.field1 + chrw(13)+ fields.field2 Ian
Aug 22, 2010 Thread starter #3 mhs377 Programmer Joined Aug 10, 2010 Messages 21 Location IR thank you very much it works Upvote 0 Downvote