Registered User Joined: 10/22/2007 Posts: 47
|
How do I continue a real code line on another line, so that it doesn't become too long on one line?
Thanks much from Tom Ferderbar
|
Worden Trainer
Joined: 10/7/2004 Posts: 65,138
|
Putting a space followed by an underscore should work as a line continuation in RealCode. For example:
If Price.Last > Price.Last(1) AndAlso _
Price.Last(1) > Price.Last(2) Then Pass
Is the same as:
If Price.Last > Price.Last(1) AndAlso Price.Last(1) > Price.Last(2) Then Pass
-Bruce Personal Criteria Formulas TC2000 Support Articles
|