Examples
You have an input file called myinput.txt
in the current directory. myinput.txt
contains these PPFA source statements:
⋮ FORMDEF myformdef ⋮ PAGEDEF mypagedef ⋮
- 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 calledP1mypagedef.p1
. - To create a form definition and page definition from
myinput.txt
, and then store them in theC:\resources
directory, enter this command:ppfa -fC:\resources.f1 -pC:\resources.p1 myinput.txt
- To create a listing file called
myinput.list
and store it in theC:\listings
directory, enter this command:ppfa -sC:\listings.list myinput.txt