Aug 22, 2010 #1 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
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 Jun 26, 2002 3,511 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 Aug 10, 2010 21 IR thank you very much it works Upvote 0 Downvote