Posts by Rodrigo Gambarra • 3 points
4 posts
- 
		0 votes1 answer172 viewsA: How to insert header and footer in documeto docx using Apache PoiI was able to upload the header and footer images. Follow the code below: XWPFDocument doc = new XWPFDocument(); CTSectPr sectPr = doc.getDocument().getBody().addNewSectPr(); XWPFHeaderFooterPolicy… 
- 
		0 votes1 answer172 viewsQ: How to insert header and footer in documeto docx using Apache PoiI am trying to insert header and footer in an automatically generated docx file, the image loads but it is not visible in the file. Just follow my code: XWPFDocument doc = new XWPFDocument();… 
- 
		0 votes1 answer179 viewsQ: how to change the width of Joptionpane.showInputDialog?Would you like to know how to increase the width of the inputDialog inbox? I am using the code below to open the dialog box to edit an information called "title", is working, but the title can be a… joptionpaneasked Rodrigo Gambarra 3
- 
		0 votes6 answers19214 viewsA: Problem to publish project - GithubYou must commit before pushing. First add the files with the command: git add . Then commit: git commit -m "primeiro commit" Then the push: git push origin master…