On Aug 4, 2010, at 6:38 PM, Tom Russell wrote: > I have a really really long Print statement I am doing and I must be hitting the max chars allowed for one line in the editor. > > How to I make a big long string like that without creating another new line? The simplest solution is to create multiple print statements. e.g. instead of: print a;b;c;d;e;f; try: print a;b;c; print d;e;f; Post your print statement for a better response. It is also possible to split lines with the Option-L character. Brian S