Re: RE : [Axapta-Knowledge-Village] length of code per line and how to split it???

2004-12-22 Thread Sonny Wibawa Adi
Thus:Str s = @”This is A multiline String”;     Regards, Morten  From: Preston A. Larimer [mailto:[EMAIL PROTECTED] Sent: 22. desember 2004 10:40To: Axapta-Knowledge-Village@yahoogroups.comSubject: RE: [Axapta-Knowledge-Village] length of code per line and how to split it???   There is no special line

RE : [Axapta-Knowledge-Village] length of code per line and how to split it???

2004-12-22 Thread Steeve Gilbert
D] Envoyé : 22 décembre 2004 09:21 À : Axapta-Knowledge-Village@yahoogroups.com Objet : RE: [Axapta-Knowledge-Village] length of code per line and how to split it???   In 3.0 you can also have continous strings. From developers handbook:   A new type of string literal has been added. Strings th

RE: [Axapta-Knowledge-Village] length of code per line and how to split it???

2004-12-22 Thread Morten Aasheim
From: Preston A. Larimer [mailto:[EMAIL PROTECTED] Sent: 22. desember 2004 10:40 To: Axapta-Knowledge-Village@yahoogroups.com Subject: RE: [Axapta-Knowledge-Village] length of code per line and how to split it???   There is no special line continuation in x++, x++ is like c and c++ in that

Re: [Axapta-Knowledge-Village] length of code per line and how to split it???

2004-12-22 Thread Joy
Thanks Preston and Raul for your tips.   I've try it and it success :p.   Thanks again.   Joy Sharing the knowledge on Axapta. Yahoo! Groups Sponsor Get unlimited calls to U.S./Canada Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.c

RE: [Axapta-Knowledge-Village] length of code per line and how to split it???

2004-12-22 Thread Preston A. Larimer
There is no special line continuation in x++, x++ is like c and c++ in that it ignores white space,  some time the editor will show an error when you first break a line, but once you finish the line out with a semicolon it should be good.  The one place you’ll have difficulty is long str

Re: [Axapta-Knowledge-Village] length of code per line and how to split it???

2004-12-22 Thread Raul Llorente Peña/OPENSOLUTIONS
if you write somwthing like:codecodecodecode.function(parrameter,   parameter, parameter,   parameter, etc   );no problem. (Split sintactically the code!!) I think your problem is that y