Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Artful Two for Clipper 5.0 - Norton Guide http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]

Syntax

CRLF( cString )

Purpose

Adds a carriage return and line feed to a string

Arguments

     cString -- string to display or print

Setup

None.

Example

     ? CRLF( "These are" ) + ;
       CRLF( "on separate lines." )

Returns

cString + CHR(13) + CHR(10)

Side Effects

None.

Artful Calls

None.

Source File

ARTFUL.CH

Notes

To create a multi-line report form header, use CRLF() in a group
expression. For example, to print the whole company address atop a list of
invoices:


     CRLF( CUSTOMER->Company ) + SPACE(14) + ;
     CRLF( Address ) + SPACE(14) + ;
     ... etc.

(The space(14) forces alignment in the report form group header.)

This is a pseudo-function via #define.

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson