Can anyone give me a link to a good tutorial with detailed
examples on how to use wxProcess/wxExecute?
thanks
Can anyone give me a link to a good tutorial with detailed
examples on how to use wxProcess/wxExecute?
thanks
Karl Kobata wrote:
Can anyone give me a link
to a good tutorial with detailed
examples on how to use wxProcess/wxExecute?
As a general rule, I think it’s better to use the tools built-in to
Python when they duplicate wx addons. As a result, I’d recommend you
read up on the subprocess module. It is both flexible and powerful,
and can likely handle anything you need to do.
Yes it is flexible and powerful, but can not handle anything I need to do.
As far as I know, you cannot process UNIX-signals in a wx.App
unless you start the external process with
as a wx.Process with wx.Execute.
Me too I still need some education on wx.Process/wx.Execute.
Found something in:
http://wiki.wxwindows.org/WxProcess
http://wiki.wxwindows.org/WxExecute
There should be an "exec" example, which I have not found so far.
In the demo there is a the Process.py example.
wxPython-2.8.9.1/demo/Process.py
Grüessli
Am 17.12.2008 um 21:34 schrieb Tim Roberts:
Karl Kobata wrote:
Can anyone give me a link to a good tutorial with detailed examples on how to use wxProcess/wxExecute?
As a general rule, I think it's better to use the tools built-in to Python when they duplicate wx addons. As a result, I'd recommend you read up on the subprocess module. It is both flexible and powerful, and can likely handle anything you need to do.
--
Kurt Müller, mu@problemlos.ch
Thank you. I will look more closely as
subprocess.
From: Tim Roberts [mailto:timr@probo.com]
Sent: Wednesday, December 17, 2008
12:35 PM
To: karl.kobata@syncira.com;
wxpython-users@lists.wxwidgets.org
Subject: Re: [wxpython-users]
wxProcess/wxExecute - tutorial
Karl Kobata wrote:
Can anyone give me a link to a good tutorial with
detailed examples on how to use wxProcess/wxExecute?
As a general rule, I think it’s better to use the tools built-in to Python when
they duplicate wx addons. As a result, I’d recommend you read up on the
subprocess module. It is both flexible and powerful, and can likely
handle anything you need to do.
--
Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.
Kurt Mueller wrote:
Am 17.12.2008 um 21:34 schrieb Tim Roberts:
Karl Kobata wrote:
Can anyone give me a link to a good tutorial with detailed examples on how to use wxProcess/wxExecute?
As a general rule, I think it's better to use the tools built-in to Python when they duplicate wx addons. As a result, I'd recommend you read up on the subprocess module. It is both flexible and powerful, and can likely handle anything you need to do.
Yes it is flexible and powerful, but can not handle anything I need to do.
As far as I know, you cannot process UNIX-signals in a wx.App
unless you start the external process with
as a wx.Process with wx.Execute.Me too I still need some education on wx.Process/wx.Execute.
Found something in:
http://wiki.wxwindows.org/WxProcess
http://wiki.wxwindows.org/WxExecuteThere should be an "exec" example, which I have not found so far.
That is referring the the C++ sample for wxExecute.
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!