SPACHA
Joined: 17 Sep 2004 Posts: 1
|
Posted: Thu Oct 21, 2004 9:14 am Post subject: Writing output to file |
|
|
I have just upgraded from Version 2.52 to Version 4.6. Using the old version, the information I write out to files is properly spaced and creates new pages properly. With the new version, no page breaks or spaces are being written out to files. Is there some global setting that I might need to update or something? I am just writing some summary results to an RTF file. I provided an example below - this is extremely old cold in fixed format.
Thanks,
Seth R. Pacha
Write(10,40)
40 FORMAT(1H1,'DEPLOYMENT PRIORITY TABLE: '/1H0,
1 ' - - - - - - - - - - - - - PRIORITY SEQ',
1 'UENCE - - - - - - - - - - - - -'/1H ,
1 'WHS NAME 1ST 2ND 3RD 4TH 5TH 6TH 7TH 8TH 9TH ',
1 '10T 11T 12T 13T 14T 15T 16T 17T 18T 19T'/1H ,
1 '--- -------- --- --- --- --- --- --- --- --- --- ',
1 '--- --- --- --- --- --- --- --- --- ---')
DO 50 I=1,NOFWHS
Write(10,45)I,XFAC(I),(XFAC(IPRIO(I,J)),J=1,NOFWHS-1)
45 FORMAT(1H ,I2,2X,A8,2X,19A4)
50 END DO |
|