Re: [python-win32] Saving (publishing) an Excel or Word 2007 file as aPDF document.

2010-05-03 Thread Michel Claveau
Hi! Try (Excel_2007): xlTypePDF=0 objExcel.ActiveWorkbook.ExportAsFixedFormat(xlTypePDF,C:\\monexcel.pdf) @-salutations -- Michel Claveau ___ python-win32 mailing list python-win32@python.org

Re: [python-win32] python-win32 Digest, Vol 86, Issue 3

2010-05-03 Thread Lewis Pusey
Thanks for the reply, I'll give it a whirl. I thought WOW was world of warcraft for some reason. Lewis On Mon, May 3, 2010 at 6:00 AM, python-win32-requ...@python.org wrote: Send python-win32 mailing list submissions to python-win32@python.org To subscribe or unsubscribe via the World

Re: [python-win32] Setting UserInitials in Office

2010-05-03 Thread Mike Driscoll
On 1:59 PM, Tim Golden wrote: On 28/04/2010 14:23, Mike Driscoll wrote: Sorry for the delay in checking this out. I was out of the office yesterday. Your code almost worked for reading the key, but I get a tuple back: [goes back to check what he wrote...] That's why my code does this (note

Re: [python-win32] MFCC71.DLL Errors

2010-05-03 Thread Tim Roberts
Lewis Pusey wrote: Thanks for the reply, I'll give it a whirl. I thought WOW was world of warcraft for some reason. Windows On Windows. They used the same name to describe 16-bit Windows applications running in the Win32 subsystem. And please note the instructions: When replying, please

Re: [python-win32] Setting UserInitials in Office

2010-05-03 Thread Tim Roberts
Mike Driscoll wrote: Ah...I must have had something in my eye at the time. Anyway, I figured out how to get the information from it, but not how to write it. I tried writing to the Registry using _winreg.SetValueEx and passed a plain string and then various encoded strings (like utf16,

Re: [python-win32] Finding DLL's which are in use (loaded)

2010-05-03 Thread Jeremy Nicoll - ml pyw32
Tony Cappellini cappy2...@gmail.com wrote: I need to write a program which copies some dlls from one location to another. However, if any applications which use these dll's are running, Windows won't let the dll copy complete, until the apps which have the dlls loaded have terminated. I'm

Re: [python-win32] how to get access to someone's else Outlook Calendar ?

2010-05-03 Thread Stef Mientki
On 29-04-2010 09:08, Mark Hammond wrote: IIRC, the outlook application doesn't support a Logon. Your best bet is probably to try and find some examples in VBScript or any other language and then translate the knowledge that gives you into Python. thanks Mark, that was a very good hint. I

[python-win32] problems with win32comext\taskscheduler on windows 2008

2010-05-03 Thread Vaida Bogdan
Hi, I have a problem with my taskscheduler library: it works on Windows XP but upon entering the 2008 land my task gets created without any triggers. I've ran the same commands I ran on XP but the task doesn't get created. http://pastebin.com/bmg847hw This on XP (and 2003 Server)

[python-win32] finding pythonXX.dll?

2010-05-03 Thread Bill Janssen
Is there anyway to tell, from inside Python, where the python26.dll file is? I've got to install the win32 dlls in the same directory. I see that sys contains a symbol dllhandle, but that's just a numeric handle. Bill ___ python-win32 mailing list

[python-win32] finding pythonXX.dll?

2010-05-03 Thread Roger Upole
Bill Janssen wrote: Is there anyway to tell, from inside Python, where the python26.dll file is? I've got to install the win32 dlls in the same directory. I see that sys contains a symbol dllhandle, but that's just a numeric handle. Bill win32api.GetModuleFileName(sys.dllhandle)

[python-win32] problems with win32comext\taskscheduler on windows

2010-05-03 Thread Roger Upole
Does job.GetTriggerCount() return 1 ? If it does, but the trigger doesn't appear in the Task Scheduler UI, most likely there's something it doesn't like about the trigger's flags. Roger ___ python-win32 mailing list python-win32@python.org