10-28-2023, 03:32 PM
LPRINT On A Microsoft PDF Printer driver in Wndows 11 Does not issue a page break when one should be issued. I Have a 21 records in a USER TYPE construct, if i LPRINT that to the print]]]] PDF file it only prints the first 10 records and nothing else. is there an instruction i'm missing or something to eject the page in the pdf file?
only one space is present not two as shown here, and yes, afte 10 records it's all i can see. there is no page 2 or whatever.
Help
Code: (Select All)
IF CurrentAlbum.IsActive = 1 THEN
IF RTRIM$(CurrentAlbum.Title) <> "" AND CurrentAlbum.AlbumID > 0 THEN
LPRINT ""
LPRINT "Album ID:"; CurrentAlbum.AlbumID
LPRINT "Title...: "; CurrentAlbum.Title
LPRINT "Artist..: "; CurrentAlbum.Artist
LPRINT USING Template1$; CurrentAlbum.Label; CurrentAlbum.Country; CurrentAlbum.Language;
LPRINT USING Template2$; CurrentAlbum.Year; CurrentAlbum.Style; CurrentAlbum.Medium;
LPRINT ""
END IF
END IF
Help