Re: killing process in windows

2005-06-09 Thread Veronica Tomescu
Hi Mick,   Thanks for your reply.It works fine until killing the process.Wmplayer is started,I can see the process in the task manager list,I also tried with notepad and it's the same problem. I appreciate if you can help. Vero Trent Mick <[EMAIL PROTECTED]> wrote: [Miki Tebeka wrote]> Hello Veroni

Re: killing process in windows

2005-06-09 Thread Trent Mick
[Miki Tebeka wrote] > Hello Veronica, > > >I am using Trent's process.py but I have a problem with killing the > >processes in windows. > >For example : > > > >import process,time > > > >p=process.ProcessOpen('C:\Program Files\Windows Media > >Player\wmplayer') > >tim

Re: killing process in windows

2005-06-09 Thread Miki Tebeka
Hello Veronica, >I am using Trent's process.py but I have a problem with killing the >processes in windows. >For example : > >import process,time > >p=process.ProcessOpen('C:\Program Files\Windows Media >Player\wmplayer') >time.sleep(3) >p.kill() > >will star

killing process in windows

2005-06-08 Thread Veronica Tomescu
Hi,   I am using Trent's process.py but I have a problem with killing the processes in windows. For example :   import process,time   p=process.ProcessOpen('C:\Program Files\Windows Media Player\wmplayer')time.sleep(3)p.kill()   will start Media Player without terminating it. Any suggestions? Than