It seems that the Task Scheduler 2.0 enum types in TASK_TRIGGER_TYPE2 are not
implemented:
These are for Task Scheduler 1.0
$ grep -rni TASK_TIME_TRIGGER_DAILY *
com/win32comext/taskscheduler/src/PyITaskTrigger.cpp:129:
"TASK_TIME_TRIGGER_ONCE,TASK_TIME_TRIGGER_DAILY,\n"
co
Roger Upole wrote:
> 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
>
> wi
Bill Janssen schrieb:
> Roger Upole wrote:
>
>> 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
>> > nume
Thomas Heller wrote:
> Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32 bit (Intel)]
> on win32
> Type "help", "copyright", "credits" or "license" for more information.
> >>> from ctypes import *
> >>> buf = create_string_buffer(256)
> >>> windll.kernel32.GetModuleFileNameA
> <_Fu
Hi,
I'm trying to execute some python code when a new ActiveX Python engine is
instantiated. I thought I could use sitecustomize.py to put my code in but this
module seems to get executed only for the first engine created (probably when
pythoncomXX.dll is loaded for the first time).
Is there
On 5/05/2010 5:33 AM, Marc-Andre Belzile wrote:
Hi,
I'm trying to execute some python code when a new ActiveX Python engine
is instantiated. I thought I could use sitecustomize.py to put my code
in but this module seems to get executed only for the first engine
created (probably when pythoncomXX