To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=43411
------- Additional comments from [email protected] Tue Feb 2 09:31:49 +0000 2010 ------- This problem does *not* only apply to imorted word documents! -inserted .odt-files. This problem does *not* only apply for complex tables! -one row, two columns. This problem occurs every day! The problem can occur on the first page break, but often when a it breaks for the second time. The problem does occur on both Linux and Windows. The problem is *not* solved by "SetOptimalRowHeight" nor with "isSplitAllowed" or "Split". I tied to create a macro to 'repair' the document, but it doesn't help in all cases: --- Sub RebuildAllTables oDoc = ThisComponent for i = 0 to oDoc.getTextTables().Count() - 1 oTab = oDoc.getTextTables().getByIndex(i) oTab.Split = FALSE for j = 0 to oTab.getRows().Count() - 1 oRow = oTab.getRows().getByIndex(j) oRow.isSplitAllowed = FALSE oProvider = ThisComponent.CurrentController.Frame oDispHelper = createUnoService("com.sun.star.frame.DispatchHelper") oDispHelper.executeDispatch(oProvider, ".uno:SetOptimalRowHeight", "", 0, Array()) oRow.isSplitAllowed = TRUE next j oTab.Split = TRUE next i End Sub --- Does anyone have any other ideas of how to repair the table? I think this problem should be fixed soon. --------------------------------------------------------------------- Please do not reply to this automatically generated notification from Issue Tracker. Please log onto the website and enter your comments. http://qa.openoffice.org/issue_handling/project_issues.html#notification --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
