Hi, with this code which sits behind a field in a printable account statement, what function can i use to take the echo comments and write them to the printable statement. Thanks
DECLARE STRET Type Character
DECLARE AUXKEY1 TYPE CHARACTER
OpenTable("c:\capital\firstcal\CUAUX000")
AUXKEY1:=CUSTREC->CUSCODE
CUAUX000->(FIND(AUXKEY1,,TRUE))
STRET:= GETFIELD("APPRET","CUAUX000")
CLOSETABLE()
If Stret = "Yes" .OR. Stret = "yes"
echo("Credit App Returned")
elseif Stret = "No" .OR. Stret = "no"
echo("No Credit App returned")
else
echo("Garbage in the field")
endif