------------------------------------------------------------------
StoreForms
----------
ObjectVision Registration:

@REGISTER("@StoreForms", "InwCCCI", "LinkName, FileName,
            Field, Lines", "PRINTER.DLL", "STOREFORMS", 1)

Example Call:

@StoreForms("link", "c:\autoexec.bat", "field1", 3)
Parameter 1 - Link Name
Parameter 2 - File Name
Parameter 3 - Field to load the text into
Parameter 4 - Number of lines to read in per form

StoreForms -
  Stores a text file into the link database for each increment of
  the last parameter.  So using this call, StoreForms will
  read in 3 lines of the textfile "c:\autoexec.bat" and then
  call Store("link") in ObjectVision. Then, it will loop through
  the same sequence until it runs into the end of the text file.

------------------------------------------------------------------
PrintForms
----------
ObjectVision Registration:

@REGISTER("@PrintForms", "InwCCCI", "FormName, FileName,
           Field, Lines", "PRINTER.DLL", "PRINTFORMS", 1)

Example Call:

@PrintForms("CallPrntForm", "c:\autoexec.bat", "Text",18)
Parameter 1 - Form Name
Parameter 2 - File Name to Load and Print
Parameter 3 - Field to load the text into
Parameter 4 - Number of lines to read in per form

PrintForms -
  Reads a specified number of lines of a text file into a ObjectVision
  field and then calls the ObjectVision PrintForm routine.  Using this
  example call, it reads 18 lines into the field text and then executes
  a PrintForm("CallPrntForm") for each 18 lines until it reaches the
  end of the text file.


------------------------------------------------------------------
