home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #3 / K-CD-3-2002.ISO / OpenOffice / f_0046 / sbasic.jar / text / sbasic / common / 03120102.xml < prev    next >
Encoding:
Extensible Markup Language  |  2001-09-07  |  1.9 KB  |  28 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <html><head><title>Chr Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03120102"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
  3.  
  4.         p.P1{
  5.                 }
  6.         span.T1{
  7.                 font-weight:bold;}
  8.         </style></head><body>
  9.   
  10.   
  11.   <help:to-be-embedded Eid="chr" xmlns:help="http://openoffice.org/2000/help">
  12.   <p class="Head1"><help:link Id="66384">Chr Function [Runtime]</help:link></p>
  13.   <p class="Paragraph">Returns the character corresponding to the specified character code.</p>
  14.   </help:to-be-embedded>
  15.   <p class="Paragraph"><span class="T1">Syntax</span>:</p>
  16.   <p class="Paragraph">Chr(Expression As Integer)<help:key-word value="Chr" tag="kw66384_1" xmlns:help="http://openoffice.org/2000/help"/></p>
  17.   <p class="Paragraph"><span class="T1">Return value</span>:</p>
  18.   <p class="Paragraph">String</p>
  19.   <p class="Paragraph"><span class="T1">Parameter</span>:</p>
  20.   <p class="Paragraph">Expression: Numeric variables representing a valid ASCII value (0-255).</p>
  21.   <p class="Paragraph">The <span class="T1">Chr$</span> function is often used to send special control sequences to a printer or other output source. Another use can be, for example, to insert quotation marks in a string expression, which is otherwise problematic in a programming environment since the quote represents the start of a string in OpenOffice.org Basic source text.</p>
  22.   <p class="Paragraph"><span class="T1">Example:</span></p>
  23.   <p class="PropText">sub ExampleChr</p>
  24.   <p class="PropText">REM This example inserts an apostrophe (ASCII value 34) in a string.</p>
  25.   <p class="PropText">MsgBox "A "+ Chr$(34)+"short" + Chr$(34)+" trip."</p>
  26.   <p class="PropText">REM The printout appears in the dialog as: A "short" trip.</p>
  27.   <p class="PropText">end sub</p>
  28.  </body></html>