Powerpoint slide master - page numbers aren't aligned to the same line - numbers

I hope someone can help me, I have never created a slide master before and created one as good as I could
But when I use the template(?) slides the numbers on some page are NOT in the same line or row as the one before
Example:
page 5 http://i.imgur.com/KXr0Bnv.png
page 6 http://i.imgur.com/CxIM1YK.png
from page 1 to 5 is exactly what I want it to look like, but from 6 to 10 the numbers are moved more to the right side of the page
What I have tried:
I tried to copy-paste the text box (or page number textbox) from page
5 to 6 = Same output
I tried to create a new slidemaster and copy the slide master from
the old one to the new one without the footer page number box = Same
output
I tried to add more space or margin on the right side of the number =
Moves too much to the left
Conclusion:
I hate powerpoint

Related

Microsoft Word restart page numbering

In MS Word for Windows 10, if you wish to restart page numbering from "1" in the middle of a large document, doing so is currently a 7 step process. For example, let's say you have a document with 4 sections and on each section you wanted to restart the page numbering from "1".
I had two related questions:
Is there a way that, not involving adding any code to the source material, that a user can restart page numbering with 1 or 2 steps as opposed to 7?
If no, did anybody have a script that would allow the functionality described above?
Thanks
You can set the page numbers to restart by right-clicking on the page number, selecting Format Page Numbers... from the context menu and then, in the dialog now opening, entering the desired start value. Seems easy enough to me actually.
If you want to make it simpler you can add the below macro to your Normal.dotm file. You can then add a button to your Quick Access Toolbar that you bind to the macro and the command will be a single click away.
Note that page numbering always works per section, so your document will already have to contain the respective sections.
Sub RestartPageNumbers()
Dim startingNumber As Integer
startingNumber = InputBox("Start page number at: ", "Restart Page Numbers", 1)
ActiveWindow.View.SeekView = WdSeekView.wdSeekCurrentPageFooter
With Selection.HeaderFooter.PageNumbers
.RestartNumberingAtSection = True
.startingNumber = startingNumber
End With
ActiveWindow.View.SeekView = WdSeekView.wdSeekMainDocument
End Sub

Jasperreports Textbox shouldn't split across page

currently I'm trying to have a small PDF rendered with Jasperreports.
The PDF is really really simple, it contains some info on the left and a Text that changes in his size on the right.
However currently the List Subreport gots splitten so that the text box will got cut half if the last text box overflows the page, how to prevent that??
Here is my Report: http://pastebin.com/Yfct9qqc
I just want that if the element in the detail band overflows the page it should be printed on the next page, is that possible?
Currently it will just overflow the text field on the right or if i specify the left box get repeated..
Fixed by setting split type to "Immediate" and changed the print order to "horizontal"

iReport 4.5.0 duplicating last row of a page when the text is to large

When the text overflows de cell that he should be in, the line appears duplicated on the next page. The picture illustrate the error:
The line information presented on the last line of the first page (number 1) is the same that is presented on the first line of the second page (number 2). The text presented on number 3 should be "SEPTOPLASTIA POR VIDEOENDOSCOPIA". The text broke into two parts (number 3 and 4).
Anyone knows if theres a config for this?

How to remove empty space after last row when using Can Grow option on text fields in Crystal Report?

I have a report displaying rows with text fields with variable length (I use the Can Grow option). I use a Box for the details. My problem is that when the last text field cannot fit into to the box on the bottom of the page, a empty space is left, and the new row begins on next page. Unchecking the option Keep Object Together on the fields, didn't solve the problem and if it did I don't want the content of the text field to break across pages.
My question is: Is it possible to auto-re-size box height depending on rows content, so I can avoid empty spaces at the bottom on every page (doesn't look very nice).
Thanks in advance.
There are three things I can think of that might help.
As you said, you can limit the maximum size of a "can grow" field. To the right of the can grow checkbox (in CR designer) there is a "Maximum number of lines" value that defaults to 0 (no limit). You can set that to however many lines you like.
The details section itself has a setting for "keep together" too -- right-click the details section label and go to the section expert. If you uncheck it there the details section will start on the bottom of the page and continue on the next one.
Look at the page footer section, it is printed at the bottom of each page, and if it is large, it takes away from the available space for the data. Group footers, if you have any, could give you the same problem.

JasperReports: Subreport properties "Print In First Whole Band"

First sorry for my English - it's not native for me.
I've create report with subreport. Subreport print some records, each textField is surrounded by border (It should look like a table). And when some textField's Height is too large - it breaks and continue to print text on next page - and thats Ok, but the other textField elements in a row are left on previous page - and their borders don't show on new page. This cause the report to look with only alone textField in a row (first row on new page). See attach: Red line - text is carry over to new page. Green markers - text fields left at prev page.
I've tried to use Print In First Whole Band property to avoid row breaking, but Subreport don't react on it. Probably this is JasperReports issue.
Please advice how can I make my report looks fine, without empty spaces instead of borders when starting new page ?