--- title: "Add Space Between Files When Printing ALL" type: "article" slug: "add-space-between-files-when-printing-all" url: "http://localhost/article/add-space-between-files-when-printing-all/" markdown_url: "http://localhost/article/add-space-between-files-when-printing-all.md" published_at: "2025-10-25T23:53:20+00:00" modified_at: "2026-06-21T23:37:24+00:00" featured_image: url: "http://localhost/wp-content/uploads/2022/04/20230809-041332.jpg" excerpt: "When you set up the print format, you can just enter ALL to print out the whole file. Unfortunately, no space is printed between files. I could be wrong, but I think in most cases a space would be desired so I changed the routine so that whenever ALL is the print format, a blank…" category: - name: "Extensions" slug: "extensions" taxonomy: "category" url: "http://localhost/category/periodicals/extensions/" post_tag: - name: "Full Text" slug: "fulltext" taxonomy: "post_tag" url: "http://localhost/tag/fulltext/" - name: "Pro/File 2068" slug: "pro-file-2068" taxonomy: "post_tag" url: "http://localhost/tag/pro-file-2068/" - name: "TS 2068" slug: "ts2068" taxonomy: "post_tag" url: "http://localhost/tag/ts2068/" - name: "Type-in program" slug: "type-in-program" taxonomy: "post_tag" url: "http://localhost/tag/type-in-program/" model: - name: "Timex/Sinclair 2068" slug: "ts-2068" taxonomy: "model" url: "http://localhost/model/ts-2068/" indiv: - name: "Robert Fischer" slug: "robert-fischer" taxonomy: "indiv" url: "http://localhost/indiv/robert-fischer/" publication_r: id: 39138 title: "Extensions" type: "periodical" url: "http://localhost/periodical/extensions/" authors: "Robert Fischer" authors_r: - name: "Robert Fischer" slug: "robert-fischer" taxonomy: "indiv" url: "http://localhost/indiv/robert-fischer/" issue: "4" issues_articles: - id: 49310 title: "Extensions issue 4" type: "issue" url: "http://localhost/issue/extensions-4/" pages: "2-4" product_reviews: - id: 13646 title: "Pro/File 2068" type: "product" url: "http://localhost/product/pro-file-2068-2/" archive_link: false --- # Add Space Between Files When Printing ALL When you set up the print format, you can just enter ALL to print out the whole file. Unfortunately, no space is printed between files. I could be wrong, but I think in most cases a space would be desired so I changed the routine so that whenever ALL is the print format, a blank line is printed first. If you don’t want the space, you will need to enter the format as: 1/2/3/4/5/6/7/ etc. ``` 6515 IF A$="ALL/" THEN LET C$=CHR$ O: FOR X=U TO J: LET C$=C$+CHR$ X: NEXT X: LET D=INT PI: GO TO VAL "6600" 9996 DIM D$(VAL "27529"): LET P=VAL "20": LET O=NOT PI: LET B=O: LET U=SGN PI: LET H=U+U: LET F=H+H: LET G=VAL "7": LET K=VAL "10": LET J=VAL "15": LET Q=CODE " ": LET R=VAL "256": LET A$="ALL": LET C$=CHR$ O: FOR X=U TO J: LET C$=C$+CHR$ X: NEXT X: LET S=O ```