Examples

You have an input file called myinput.txt in the current directory. myinput.txt contains these PPFA source statements:

 ⋮
FORMDEF myformdef
 ⋮
PAGEDEF mypagedef
 ⋮

  1. To create a form definition and page definition from myinput.txt and store them in the in the current directory, enter this command:
    ppfa -f..f1 -p.p1 myinput.txt

    The generated form definition is called F1myformdef.f1. The generated page definition is called P1mypagedef.p1.

  2. To create a form definition and page definition from myinput.txt, and then store them in the C:\resources directory, enter this command:
    ppfa -fC:\resources.f1 -pC:\resources.p1 myinput.txt
  3. To create a listing file called myinput.list and store it in the C:\listings directory, enter this command:
    ppfa -sC:\listings.list myinput.txt