Re: [python-win32] Python Service does not start at Windows boot but at user's logon

2008-06-09 Thread Mark Hammond
> I may have found an issue for my problem : I've made the service RpcSs > (Remote Procedure Call SubSystem) > dependent from my own service. Thus, RpcSs will only start when my own > service has started. > It seems to work. A drawback is that Another drawback is that if your service fails for an

Re: [python-win32] pywin32 build 211 released

2008-06-09 Thread Mark Hammond
> I encounter a problem when trying to install it. I get prompted by a > secure window (a window with some keys icons) asking me if I want to > run > it with my account with(out) security against virus or with another > account. > None of the 3 possibilities works for me. Any idea ? When you say n

Re: [python-win32] Service does not start at windows boot but at user's login

2008-06-09 Thread le dahut
I suppose that the user's program throws an exception if the service isn't started yet. I propose this : while True: try: do_what_fails_if_service_isn_t_started break except: time.sleep(0.5) I've this problem when using wipfw and twisted's reactor. stephane.poirot w

[python-win32] Python Service does not start at Windows boot but at user's logon

2008-06-09 Thread spoirot
Good morning everyone, I may have found an issue for my problem : I've made the service RpcSs (Remote Procedure Call SubSystem) dependent from my own service. Thus, RpcSs will only start when my own service has started. It seems to work. A drawback is that if I want to stop my service before s

Re: [python-win32] IE control via DWebBrowserEvents2

2008-06-09 Thread Mike Driscoll
Vaclav Opekar wrote: Hello all, I'm trying to embed IE to a GTK app and control IE behavior via the DWebBrowserEvents2 interface. Embedding works, events like OnBeforeNavigate2 or OnNewWindow2 are comming fine but when I try to return (from the callback) a Cancel value which suppose stop IE

[python-win32] How to use event class ?

2008-06-09 Thread Serge Gauthier
Hi, To develop a interface to a COM library under Boa Constructor and WxPython, Python 2.5, I had to use the makepy utility to generate the classes file. I show you a part of this file: class _IPmacDeviceEvents: """_IPmacDeviceEvents Interface""" CLSID = CLSID_Sink = IID('{D1C5C7C8-5E0C-495

[python-win32] Webbrowser control and Tab Navigation

2008-06-09 Thread Christof Ecker
Hi all, I am using the webbrowser control (internet explorer) as display component in a project. Unfortunately the Tab and Enter keys do not work, i.e. it is impossible to switch between input fields of the displayed html-page and it is impossible to enter a newline in an input field. The shorten

Re: [python-win32] pywin32 build 211 released

2008-06-09 Thread le dahut
Actually it works with XP SP2 but not with XP without SP. le dahut a écrit : I encounter a problem when trying to install it. I get prompted by a secure window (a window with some keys icons) asking me if I want to run it with my account with(out) security against virus or with another accoun

Re: [python-win32] pywin32 build 211 released

2008-06-09 Thread le dahut
I encounter a problem when trying to install it. I get prompted by a secure window (a window with some keys icons) asking me if I want to run it with my account with(out) security against virus or with another account. None of the 3 possibilities works for me. Any idea ? Mark Hammond a écrit