[python-win32] Help about printing

2008-05-01 Thread Javi
Hello, i use python 2.5, and wx, i'm trying to print a bitmap with transparency background but it doesnt print right, i just get a preview right but when i printed it, bitmap transparency background is printed on black. I dont know why , but i need to print it right. All help will be welcom

Re: [python-win32] Help about printing

2008-05-01 Thread Tim Roberts
Javi wrote: Hello, i use python 2.5, and wx, i'm trying to print a bitmap with transparency background but it doesnt print right, i just get a preview right but when i printed it, bitmap transparency background is printed on black. I dont know why , but i need to print it right. All help w

Re: [python-win32] Help about printing

2008-05-01 Thread Michel Claveau
Hi! Many printers do not handle transparency. What kind of printer is it? An invisible printer? ;-) Michel Claveau ___ python-win32 mailing list python-win32@python.org http://mail.python.org/mailman/listinfo/python-win32

Re: [python-win32] Help about printing

2008-05-01 Thread Tim Roberts
Michel Claveau wrote: Hi! Many printers do not handle transparency. What kind of printer is it? An invisible printer? ;-) Ironically, I often have the opposite problem. When my inkjet printer starts to run low, I find that it excels at printing transparent images, but neglects to print

[python-win32] (no subject)

2008-05-01 Thread John Siegrist
var YAHOO = {'Shortcuts' : {}}; YAHOO.Shortcuts.hasSensitiveText = true; YAHOO.Shortcuts.sensitivityType = ["sensitive_news_terms"]; YAHOO.Shortcuts.doUlt = false; YAHOO.Shortcuts.location = "us"; YAHOO.Shortcuts.document_id = 0; YAHOO.Shortcuts.document_type = ""; YAHOO.Shortcuts.document_title =

Re: [python-win32] Help about printing

2008-05-01 Thread Dahlstrom, Roger
My quantum printer prints both at the same time, but every time I try to tell which is which, it changes the outcome. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Tim Roberts Sent: Thursday, May 01, 2008 1:38 PM To: Python-Win32 List Subject: Re: [pyt

[python-win32] pyHook related doubt

2008-05-01 Thread Muguntharaj Subramanian
Hi All, I am resending this from tutor list since this seems to be appropriate place to ask this question. I am trying to create a custom keyboard driver program(like http://www.tavultesoft.com/keyman/ ) for windows using python. If this python script is run in the background, what is typed should

[python-win32] wmi, Win32_ScheduledJob and Execution User

2008-05-01 Thread Tom Moulton
I've followed Tim Golden's cookbook example to schedule a job via his Python wmi module; however, I need to specify the user account a scheduled job gets executed under (i.e., the process owner). The cookbook example will schedule a job owned by SYSTEM. I note the actual WMI library provides f

[python-win32] wmi, Win32_ScheduledJob and Execution User

2008-05-01 Thread Roger Upole
The Win32_ScheduledJob class represents "AT Service" jobs, and doesn't support running under a specific user. When you access the job via the Scheduled Tasks api, it's actually converted to the newer task format. You can use the ITaskScheduler interface to directly create and manipulate schedule

Re: [python-win32] wmi, Win32_ScheduledJob and Execution User

2008-05-01 Thread Mark Hammond
> I've followed Tim Golden's cookbook example to schedule a job via his > Python wmi module; however, I need to specify the user account a > scheduled job gets executed under (i.e., the process owner). The > cookbook example will schedule a job owned by SYSTEM. I note the > actual WMI library pro