ISPART() Determines if a value is part of a set CURD() Return current drive letter SBROWS() Determine number of rows in a box ISPRN() Detects printer ready (or not) on LPT1, 2 or 3 SBCENTER() Centers box coordinates SBCOLS() Determine number of columns in a box EVALQ() Evaluates a logical condition in a string ENDSWITH() Determines if a string ends with another string PRNTFRML() Prints a formletter created by formletr() CDIR() Change Directory VARLEN() Returns length of a variable of any type
Tag Archives: PRNTFRML()
SP_PRNTFRML
PRNTFRML() Short: ------ PRNTFRML() Prints a formletter created by formletr() Returns: -------- Nothing Syntax: ------- PRNTFRML(cForm,[nPageWidth],[nLeftMargin]) Description: ------------ Prints the form <cForm> from FORMS.DBF with a pagewidth of [nPageWidth] and a left margin of [nLeftMargin] <cForm> is normally the contents of the template stored in FORMS.DBF (previous documentation refered to this parameter as the NAME of the form, which is incorrect. Examples: --------- This is used internally by FORMLETR() and FASTFORM(). Refer to its usage there. SELECT 0 USE FORM locate for descript = "MY FORM LETTER" // find letter cForm = form->memo_orig // load contents USE SELECT MYDBF PRNTFRML(cForm,79) Source: ------- S_PRNTF.PRG