Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+19 votes

I was trying to implement printing cards and it works fine until too many cards are loaded into one course. Is there a way to add pages rather than compressing the images into one page?

asked in CSC305 Fall 2023 by (1 point)

3 Answers

+8 votes

Maybe use a tabbed pane, or another way to build each page that should be printed into its own component? Then you may be able to print each of those components to its own page.

answered by (508 points)
+6 votes

This website may help:

https://coderanch.com/t/709329/java/JavaFX-approach-dividing-text-blob

I used it a lot when figuring out the printing process.

answered by (1 point)
+1 vote

we used multiple vboxes for that

answered by (2.3k points)
...