To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=67226
------- Additional comments from [EMAIL PROTECTED] Wed Jul 12 05:08:56 -0700 2006 ------- Thanks for the idea. Default printing works. But I would like to get the print dialog to pop up, which is the effect of the .uno:Print command, while in headless mode. ############### This is how I can get default printing to work: XPrintable xPrintable = ( XPrintable ) UnoRuntime.queryInterface(XPrintable.class, this.connection.getTextDocument() ); PropertyValue[] props = new PropertyValue[1]; props[0] = new PropertyValue(); xPrintable.print(props); --------------------------------------------------------------------- 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]
