To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=115745





------- Additional comments from mattraf...@openoffice.org Wed Dec  1 15:34:42 
+0000 2010 -------
arielch: Yes, we tried using only the API before, but had the same problem. 
This 
code will crash OO Writer as well:

         for (int i = 2; i < 3000; i++)
         {
             {
                 String sCellName = "A" + (i - 1);
                 XText cellText = (XText)xTextTable.getCellByName(sCellName);
                 cellText.setString("value" + i);
             }
             {
                 String sCellName = "B" + (i - 1);
                 XText cellText = (XText)xTextTable.getCellByName(sCellName);
                 cellText.setString("value" + i);
             }
             {
                 String sCellName = "C" + (i - 1);
                 XText cellText = (XText)xTextTable.getCellByName(sCellName);
                 cellText.setString("value" + i);
             }
             {
                 String sCellName = "D" + (i - 1);
                 XText cellText = (XText)xTextTable.getCellByName(sCellName);
                 cellText.setString("value" + i);
             }
             if (i % 100 == 0)
             {
                 Console.WriteLine("Row: " + i);
             }
         }


---------------------------------------------------------------------
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: issues-unsubscr...@api.openoffice.org
For additional commands, e-mail: issues-h...@api.openoffice.org


---------------------------------------------------------------------
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org

Reply via email to