QB64 Phoenix Edition
BUG Report please relocate where need be. - Printable Version

+- QB64 Phoenix Edition (https://qb64phoenix.com/forum)
+-- Forum: Chatting and Socializing (https://qb64phoenix.com/forum/forumdisplay.php?fid=11)
+--- Forum: General Discussion (https://qb64phoenix.com/forum/forumdisplay.php?fid=2)
+--- Thread: BUG Report please relocate where need be. (/showthread.php?tid=2126)



BUG Report please relocate where need be. - MystikShadows - 10-28-2023

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?

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
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 Smile