[Date Prev][Date Next][Subject Prev][Subject Next][ Date Index][ Subject Index]

Re: problem loading .prn files



** Reply to note from Jay Harlow  on Tue, 24
Sep 2002 11:26:32 -0700

> error message "customization file requires a file label."...
> "Load display.prn" fails with [above] message, plus "Bad PR keyword
> in printer file."

> Here is the entire display.prn file:

> md nm=112
> md bo=127
> md ul=113
> md br=15
> md rv=7

> What am I doing wrong?

Exactly what the error messages say is wrong: there's no file label
a.k.a. keyword to indicate what sort of LOAD file this is, whether:

;KB;
;DL;
;DG;
;SF;
or any of a number of other LOAD filetypes, such as the one that's
needed here:
;PR;

That should appear at the top of the file, by itself on the first
line, in the leftmost position. The first three lines should look
like this:
-----------
;PR;
md nm=112
md bo=127
-----------
The ";PR;" tells the LOAD command that this is a PRinter file, so
that LOAD knows how to interpret it. Now the file will LOAD
properly.

----------
Robert Holmgren
holmgren@xxxxxxxx
----------