[Libreoffice-bugs] [Bug 43932] Paper tray setting are not accepted File - Print...

2012-02-21 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

samuel_w...@web.de changed:

   What|Removed |Added

   Platform|x86 (IA32)  |All
Version|LibO 3.5.0 RC2  |LibO 3.5.0 Release

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43932] Paper tray setting are not accepted File - Print...

2012-02-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

samuel_w...@web.de changed:

   What|Removed |Added

   Severity|critical|blocker

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43932] Paper tray setting are not accepted File - Print...

2012-02-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

--- Comment #15 from Stiftung Buehl supp...@stiftung-buehl.ch 2012-02-10 
08:55:30 PST ---
 you can change the paper tray setting in File - Printer Settings...

@samuel
tnx for reply, yes i also found that hint at redhat bugzilla.

sadly we cant handle it that way.
letterhead, internal documentation, we are a school with 250 employee,
teachers are not that flexible :-)

they want a solution, comming wendsday i have to push the software rollout of 
open office.

tnx anyway

chris

PS: hopefully we will migrate back to LibreO this year

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43932] Paper tray setting are not accepted File - Print...

2012-02-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

--- Comment #14 from Vincent Van Houtte zenl...@gmail.com 2012-02-07 02:38:59 
UTC ---
@ Samuel

That is no solution if you use a letterhead and you need to print every first
page to tray X and every next page to tray Y. In an office environment this is
unacceptable.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43932] Paper tray setting are not accepted File - Print...

2012-01-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

--- Comment #9 from guenter.bart...@googlemail.com 2012-01-30 03:22:29 UTC ---
This bug also affects 3.5.0 RC2.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43932] Paper tray setting are not accepted File - Print...

2012-01-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

--- Comment #10 from Vincent Van Houtte zenl...@gmail.com 2012-01-30 07:56:48 
PST ---
I witnessed the same problem when switching from openoffice (Debian stable) to
libreoffice (debian stable with backports).

I have written a BASIC macro that works perfectly in our office and in the
office where my wife works, with the following code:

[CODE]
DIM oDoc AS Object
oDoc = ThisComponent

REM Set backgroundImage-option in DocumentSettings to False
DIM oSettings AS Object
oSettings = oDoc.createInstance(com.sun.star.text.DocumentSettings)
oSettings.PrintPageBackground = bBg1

REM choose a certain printer
DIM mPrinterOpts(3) AS NEW com.sun.star.beans.PropertyValue
mPrinterOpts(0).Name = Name
mPrinterOpts(0).Value = MFC8880DN
mPrinterOpts(1).Name = PaperFormat
mPrinterOpts(1).Value = com.sun.star.view.PaperFormat.A4
mPrinterOpts(2).Name = PaperOrientation
mPrinterOpts(2).Value = com.sun.star.view.PaperOrientation.PORTRAIT
oDoc.Printer = mPrinterOpts()

REM set Papertray in Styles
DIM oStyle AS Object
DIM sPageStyle AS String
sPageStyle = oDoc.CurrentController.getViewCursor().PageStyleName
ostyle = oDoc.StyleFamilies.getByName(PageStyles).getByName(sPageStyle)
oStyle.PrinterPaperTray = sTray

REM Set printOptions
DIM mPrintOpts(3) AS NEW com.sun.star.beans.PropertyValue
mPrintOpts(0).Name = CopyCount
mPrintOpts(0).Value = 1
mPrintOpts(1).Name = Collate
mPrintOpts(1).Value = True
mPrintOpts(2).Name = Pages
mPrintOpts(2).Value = sPageNr
mPrintOpts(3).Name = Wait
mPrintOpts(3).Value = True

REM Print
oDoc.Print(mPrintOpts())
[/CODE]

This worked perfectly with Openoffice.org v3.2.1. When I upgraded to
LibreOffice in backports (first v3.3, now v 3.4.3 OOO340m1 build 302), this
stopped working.

printing complete documents to tray 1 WORKS
printing complete documents to tray 2 WORKS
printing the first page to tray 1 and following pages to tray 2 DOES NOT WORK.

Maybe this is related to the bug at hand, and it might even help solving this
bug (and my problem ;-)) - to that end, I will be crossposting this info to bug
#39220

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43932] Paper tray setting are not accepted File - Print...

2012-01-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

--- Comment #8 from Stiftung Buehl supp...@stiftung-buehl.ch 2012-01-25 
23:17:46 UTC ---
- same problem on 3.4.3 on ubuntu 11.04
- it always uses the thefault printer from cups print server
- version 3.3.4 is working with multiple paper trays

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43932] Paper tray setting are not accepted File - Print...

2012-01-24 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

Ivan Timofeev timofeev@gmail.com changed:

   What|Removed |Added

 Status|ASSIGNED|NEW
 AssignedTo|timofeev@gmail.com  |libreoffice-b...@lists.free
   ||desktop.org
 CC||timofeev@gmail.com

--- Comment #7 from Ivan Timofeev timofeev@gmail.com 2012-01-24 09:55:54 
PST ---
Hum, I'm sorry, I didn't succeed with fixing...

My feeble attempt to fix:
http://nabble.documentfoundation.org/REVIEW-fdo-43932-try-to-fix-paper-tray-settings-td3657361.html

Reset Assignee to default.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43932] Paper tray setting are not accepted File - Print...

2011-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 CC||rosgn...@gmx.ch

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-26 03:28:29 PST ---
*** Bug 44138 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43932] Paper tray setting are not accepted File - Print...

2011-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 AssignedTo|libreoffice-b...@lists.free |timofeev@gmail.com
   |desktop.org |
 CC||LibreOffice@bielefeldundbus
   ||s.de
   Keywords||regression

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-26 03:40:49 PST ---
Regression due to original report

@Ivan:
Might be UI related, may be not ... . Can you shed light on the dark?
Please feel free to reassign (or reset Assignee to default) if it’s not your
area or if provided information is not sufficient. Please set Status to
ASSIGNED if you accept this Bug.

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43932] Paper tray setting are not accepted File - Print...

2011-12-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43932

--- Comment #1 from Clément P. clement.paill...@sesame.fr 2011-12-23 02:40:35 
PST ---
Reproduced the same problem on Mandriva 2008 (x64), LibreOffice 3.4.4 (340m1
Build:402).

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs