$FUNCNAME$
  HARDCR()
$CATEGORY$
  STRING
$SUMMARY$
   Replace all soft carriage returns in a character string with hard carriage
$LANG_RU$
           
$SYNTAX$
     HARDCR(<cString>) --> cConvertedString
$LANG_RU$
     HARDCR(<>) -->  
$ARGUMENTS$
     <cString> is the character string or memo field to be converted.
$LANG_RU$
     <> -     memo-,   
     .
$RETURNS$
     HARDCR() returns a character string up to 65,535 (64K) characters in
     length.
$LANG_RU$
     HARDCR()      65 535 (64)
     .
$DESCRIPTION$
     HARDCR() is a memo function that replaces all soft carriage returns
     (CHR(141)) with hard carriage returns (CHR(13)).  It is used to display
     long character strings and memo fields containing soft carriage returns
     with console commands.  In xClipper, console commands (including
     REPORT and LABEL FORM) do not automatically convert soft carriage
     returns to hard carriage returns, making it necessary for you to
     explicitly make the conversion.  Soft carriage returns are added by
     MEMOEDIT() when lines wrap.
$LANG_RU$
     HARDCR() -    memo-,   
        (CHR(141))   
     (CHR(13)).         
     memo-,       
     .  xClipper   (  REPORT  LABEL FORM)
           
      ,     .  
        memo-  MEMOEDIT()  
     .
$EXAMPLES$
       To display a memo field formatted with the automatic word
	wrapping of MEMOEDIT():

	USE Sales NEW
	? HARDCR(Sales->Notes)
$LANG_RU$
       memo-,    
          MEMOEDIT():

       USE sales NEW
       ? HARDCR(Sales -> Notes)
$SEEALSO$
  MEMOTRAN(),STRTRAN()
$END$
