Re: Problem with wxPython form

2023-03-12 Thread aapost
On 3/10/23 15:15, Chris wrote: Hi everyone. I'm new to Python and wxPython. I've got a form I use to calculate the Sq In of a leather project. I'm using python 3.9.13 and wxPython 4.20 I'm having the following issues: 1) When I come into the form, no grid cell has the

Problem with wxPython form

2023-03-10 Thread Chris
Hi everyone. I'm new to Python and wxPython. I've got a form I use to calculate the Sq In of a leather project. I'm using python 3.9.13 and wxPython 4.20 I'm having the following issues: 1) When I come into the form, no grid cell has the focus set - I start typing and not

wxpython-OGL fails to render objects with Python-3

2020-09-17 Thread Frank Miles
I have a substantial wxpython-based application that I'm trying to port from python-2 to -3. Almost everything is working properly, except for a few small but important sections that use the OGL library. That executes without any exceptions, but the objects created within the di

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Dietmar Schwertberger
is available in the standard library. For wxPython there is some code to integrate with asyncio, but I have never used this myself. Alternatively, the communication can always be placed into a separate thread, posting events to the main application / frontend. Regards, Dietmar -- https://mail.python.org/mailman/listinfo/python-list

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Michael Torrie
On 02/27/2019 10:59 AM, Igor Korot wrote: > Hopefully with the wxQt having more and more development we might have > a wxQt/Android port getting attention. I don't think Qt has any plans to support Android with the traditional Qt framework. They've instead focused on their next generation system,

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Dan Sommers
On 2/27/19 9:37 AM, Dave wrote: I have two Python 3 (3.6) apps that will get the full GUI treatment very soon. I'm in the process of choosing a GUI, and that may be where you/your book can help. Seems this is not a trivial effort (wishing that Python was like VB6 from the 90's). Anyway, here

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Michael Torrie
he code >> can talk to while the app is loading, and the big one - a cross-platform >> printer widget that works with Windows and Mac/Unix/CUPS. A network widget >> may also be good. > > Usable built-in printer support (and "network widget would be > good") tak

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Dietmar Schwertberger
IMHO what comes closest to VB6 is wxPython with wxGlade. The focus of wxGlade is on frames and dialogs with standard widgets, though. Graphics and printing is always a bit more effort. Regards, Dietmar -- https://mail.python.org/mailman/listinfo/python-list

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Karsten Hilbert
e good. Usable built-in printer support (and "network widget would be good") takes wxPython out of the equation. Karsten PS: Myself using wxPython, so no bashing there. -- GPG 40BE 5B0E C98E 1713 AFA6 5BC0 3BEA AC80 7D4F C89B -- https://mail.python.org/mailman/listinfo/python-list

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Igor Korot
Hi, On Wed, Feb 27, 2019 at 10:53 AM Dave wrote: > > On 2/27/19 11:38 AM, Rhodri James wrote: > > On 27/02/2019 15:37, Dave wrote: > >> * GUI must support all desktops with a native look and feel. Kivy > >> fails this one. Will have mobile apps later in the year, so it would > >> be nice if one

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Dave
On 2/27/19 11:38 AM, Rhodri James wrote: On 27/02/2019 15:37, Dave wrote: * GUI must support all desktops with a native look and feel.  Kivy fails this one.  Will have mobile apps later in the year, so it would be nice if one GUI fits all, but am ok with 2 gui's if needed. This requirement wi

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Rhodri James
On 27/02/2019 15:37, Dave wrote: * GUI must support all desktops with a native look and feel.  Kivy fails this one.  Will have mobile apps later in the year, so it would be nice if one GUI fits all, but am ok with 2 gui's if needed. This requirement will cause you endless pain, particularly wh

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Dave
Sorry about the duplicate messages - bad hair day! Dave, On 2/27/19 10:38 AM, Dave wrote: On 1/14/19 2:08 PM, Mike Driscoll wrote: Hi, I just thought I would let you all know that I am working on my 2nd wxPython book, "Creating GUI Applications with wxPython". This one wil

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Dave
On 1/14/19 2:08 PM, Mike Driscoll wrote: Hi, I just thought I would let you all know that I am working on my 2nd wxPython book, "Creating GUI Applications with wxPython". This one will be about actually creating small runnable applications instead of just recipes like my Cookbook d

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Dave
On 1/14/19 2:08 PM, Mike Driscoll wrote: Hi, I just thought I would let you all know that I am working on my 2nd wxPython book, "Creating GUI Applications with wxPython". This one will be about actually creating small runnable applications instead of just recipes like my Cookbook d

Re: ANN: Creating GUI Applications with wxPython

2019-02-27 Thread Dave
On 1/14/19 2:08 PM, Mike Driscoll wrote: Hi, I just thought I would let you all know that I am working on my 2nd wxPython book, "Creating GUI Applications with wxPython". This one will be about actually creating small runnable applications instead of just recipes like my Cookbook d

ANN: Creating GUI Applications with wxPython

2019-01-14 Thread Mike Driscoll
Hi, I just thought I would let you all know that I am working on my 2nd wxPython book, "Creating GUI Applications with wxPython". This one will be about actually creating small runnable applications instead of just recipes like my Cookbook did. I hope to have 8-10 working application

Re: Problems with wxPython _core_.pyd on windows98

2018-08-03 Thread Thomas Jollans
On 02/08/18 18:02, Wanderer wrote: I have a laptop with windows 98 I use to connect to the OBD2 port on my car. I'm trying to install pyobd. I have a build for Python 2.7 for Windows98 that works but I'm having trouble with running wxPython. I get the following error. I'm sur

Re: Problems with wxPython _core_.pyd on windows98

2018-08-02 Thread Wanderer
On Thursday, August 2, 2018 at 12:03:01 PM UTC-4, Wanderer wrote: > I have a laptop with windows 98 I use to connect to the OBD2 port on my car. > I'm trying to install pyobd. I have a build for Python 2.7 for Windows98 that > works but I'm having trouble with running

Problems with wxPython _core_.pyd on windows98

2018-08-02 Thread Wanderer
I have a laptop with windows 98 I use to connect to the OBD2 port on my car. I'm trying to install pyobd. I have a build for Python 2.7 for Windows98 that works but I'm having trouble with running wxPython. I get the following error. C:\pyobd>python pyobd.py Traceback (most rec

RE: wxPython Cookbook

2016-08-26 Thread Gonzales, Dean
PM To: python-announce-l...@python.org Subject: ANN: wxPython Cookbook Hi, Several years ago, the readers of my popular Python blog <http://www.blog.pythonlibrary.org/> asked me to take some of my articles and turn them into a cookbook on wxPython. I have finally decided to do just

Re: Confused by wxpython documentation

2016-02-08 Thread cl
Ian Kelly wrote: > On Mon, Feb 8, 2016 at 8:36 AM, wrote: > > I'm playing around with some existing code that uses wxpython. I've > > been trying to understand a basic bit about the import statement and > > so went to the beginning of the wxPython on line docume

Re: Confused by wxpython documentation

2016-02-08 Thread Ian Kelly
On Mon, Feb 8, 2016 at 8:36 AM, wrote: > I'm playing around with some existing code that uses wxpython. I've > been trying to understand a basic bit about the import statement and > so went to the beginning of the wxPython on line documents. > > Going from the top to

Re: A question about imports in wxpython

2016-02-08 Thread Ian Kelly
On Mon, Feb 8, 2016 at 8:44 AM, wrote: > I'm playing with some code that uses the wxpython grid. *Every* > example I have seen starts with the imports:- > > import wx > import wx.grid as Gridlib > > As Gridlib is exactly the same number of characters as wx.gri

A question about imports in wxpython

2016-02-08 Thread cl
I'm playing with some code that uses the wxpython grid. *Every* example I have seen starts with the imports:- import wx import wx.grid as Gridlib As Gridlib is exactly the same number of characters as wx.grid I really don't see the point. Am I missing something? -- C

Confused by wxpython documentation

2016-02-08 Thread cl
I'm playing around with some existing code that uses wxpython. I've been trying to understand a basic bit about the import statement and so went to the beginning of the wxPython on line documents. Going from the top to the "Hello World Example" (can't give URL as the UR

Re: wxpython strange behaviour

2016-01-16 Thread Michael Torrie
On 01/15/2016 05:58 PM, Shiva Upreti wrote: > > What kind of further details do you want? Please tell me and i will try my > best to provide them. As always, post a small but complete example test program (no more than 20 lines of code) that has the problem. Paste it in such a way that one can

Re: wxpython strange behaviour

2016-01-15 Thread Shiva Upreti
On Saturday, January 16, 2016 at 4:39:12 AM UTC+5:30, Dietmar Schwertberger wrote: > On 15.01.2016 18:05, Shiva Upreti wrote: > > Please help me solve these issues. > Please decide first on which list or forum you want your questions to be > answered. Once people find out that you are asking the

Re: wxpython strange behaviour

2016-01-15 Thread Shiva Upreti
On Saturday, January 16, 2016 at 2:22:24 AM UTC+5:30, Mark Lawrence wrote: > On 15/01/2016 17:05, Shiva Upreti wrote: > > https://gist.github.com/anonymous/4baa67aafd04555eb4e6 > > > > I wrote the above code to display a toasterbox, and I didnt want it to > > display any frames on the screen, just

Re: wxpython strange behaviour

2016-01-15 Thread Shiva Upreti
> Error message I got: > > https://gist.github.com/anonymous/f0d4ec685d2432c80a1 > > The first gist is short enough that it easily could have been included > inline in your message. The second gist is a 404 (looks like it may be > short one hex digit). > > I haven't used

Re: wxpython strange behaviour

2016-01-15 Thread Shiva Upreti
> Error message I got: > > https://gist.github.com/anonymous/f0d4ec685d2432c80a1 > > The first gist is short enough that it easily could have been included > inline in your message. The second gist is a 404 (looks like it may be > short one hex digit). > > I haven't used

Re: wxpython strange behaviour

2016-01-15 Thread Shiva Upreti
On Friday, January 15, 2016 at 10:35:57 PM UTC+5:30, Shiva Upreti wrote: > https://gist.github.com/anonymous/4baa67aafd04555eb4e6 > > I wrote the above code to display a toasterbox, and I didnt want it to > display any frames on the screen, just a toasterbox. The problem with this > code is that

Re: wxpython strange behaviour

2016-01-15 Thread Dietmar Schwertberger
On 15.01.2016 18:05, Shiva Upreti wrote: Please help me solve these issues. Please decide first on which list or forum you want your questions to be answered. Once people find out that you are asking the same questions all over, the support will soon end. Regards, Dietmar -- https://mail.pyt

Re: wxpython strange behaviour

2016-01-15 Thread Mark Lawrence
On 15/01/2016 17:05, Shiva Upreti wrote: https://gist.github.com/anonymous/4baa67aafd04555eb4e6 I wrote the above code to display a toasterbox, and I didnt want it to display any frames on the screen, just a toasterbox. The problem with this code is that it runs fine when I run it the first ti

Re: wxpython strange behaviour

2016-01-15 Thread Ian Kelly
t it easily could have been included inline in your message. The second gist is a 404 (looks like it may be short one hex digit). I haven't used wxPython in a while and I've never used that ToasterBox widget, but I'll see what I can answer. If you don't want any frames then

wxpython strange behaviour

2016-01-15 Thread Shiva Upreti
https://gist.github.com/anonymous/4baa67aafd04555eb4e6 I wrote the above code to display a toasterbox, and I didnt want it to display any frames on the screen, just a toasterbox. The problem with this code is that it runs fine when I run it the first time, but when I run it next time it shows s

Re: monospaced font in MS Windows with wxpython

2015-09-12 Thread Laura Creighton
In a message of Fri, 11 Sep 2015 22:16:36 -, Javier writes: >I am trying to use a monospaced font (preferably small) in MS Windows >with wxpython. I have tried > >txtctrl.SetFont(wx.Font(10, wx.MODERN, wx.NORMAL, wx.NORMAL, False, >u'Consolas')) > >but no succ

Re: monospaced font in MS Windows with wxpython

2015-09-11 Thread Javier
The font I posted before was actually monospaced. I was just putting the definition in the wrong place All solved now. Sorry for the noise. > txtctrl.SetFont(wx.Font(10, wx.MODERN, wx.NORMAL, wx.NORMAL, False, > u'Consolas')) -- https://mail.python.org/mailman/listinfo/python-list

Re: monospaced font in MS Windows with wxpython

2015-09-11 Thread Emile van Sebille
On 9/11/2015 3:16 PM, Javier wrote: I am trying to use a monospaced font (preferably small) in MS Windows with wxpython. I have tried txtctrl.SetFont(wx.Font(10, wx.MODERN, wx.NORMAL, wx.NORMAL, False, u'Consolas')) but no success, I still get a proportional font. You may al

monospaced font in MS Windows with wxpython

2015-09-11 Thread Javier
I am trying to use a monospaced font (preferably small) in MS Windows with wxpython. I have tried txtctrl.SetFont(wx.Font(10, wx.MODERN, wx.NORMAL, wx.NORMAL, False, u'Consolas')) but no success, I still get a proportional font. -- https://mail.python.org/mailman/listinfo/python-list

Re: Finding problem in GUI (wxpython) for a python app

2015-04-21 Thread Ian Kelly
On Tue, Apr 21, 2015 at 11:03 AM, wrote: > We are building an app that can help people to chat with the ones connected > over LAN. No internet connection is required.For GUI we are using wxpython. > Problem is in the Launching of a frame. In the beginning when a particular > c

Finding problem in GUI (wxpython) for a python app

2015-04-21 Thread vinit . shanbhag18
We are building an app that can help people to chat with the ones connected over LAN. No internet connection is required.For GUI we are using wxpython. Problem is in the Launching of a frame. In the beginning when a particular client say c1 receives a message from c2 we pop a new frame and c2&#

Re: Intsalling wxPython

2015-04-06 Thread Ian Kelly
On Apr 6, 2015 9:31 PM, "Sepi Gh" wrote: > > On Monday, 6 April 2015 23:27:54 UTC-4, Sepi Gh wrote: > > On Monday, 6 April 2015 22:54:26 UTC-4, Sepi wrote: > > > Hi, > > > > > > I installed wxpython through command line but when I want to use it,

Re: Intsalling wxPython

2015-04-06 Thread Michael Torrie
On 04/06/2015 09:29 PM, Sepi Gh wrote: >> I got the answer! Just using python 3 instead of python in the command line > > But I get this error now: File > "/Users//Library/Python/3.3/lib/python/site-packages/wx_py/PyWrap.py", line 27 > print "Please specify a module name." >

Re: Intsalling wxPython

2015-04-06 Thread Sepi Gh
On Monday, 6 April 2015 23:27:54 UTC-4, Sepi Gh wrote: > On Monday, 6 April 2015 22:54:26 UTC-4, Sepi wrote: > > Hi, > > > > I installed wxpython through command line but when I want to use it, python > > gives me an error: File "/Users//Desktop/test.py

Re: Intsalling wxPython

2015-04-06 Thread Sepi Gh
On Monday, 6 April 2015 22:54:26 UTC-4, Sepi wrote: > Hi, > > I installed wxpython through command line but when I want to use it, python > gives me an error: File "/Users/sepidehghanavati/Desktop/test.py", line 1, > in > import wx > ImportError: No module

Intsalling wxPython

2015-04-06 Thread Sepi
Hi, I installed wxpython through command line but when I want to use it, python gives me an error: File "/Users/sepidehghanavati/Desktop/test.py", line 1, in import wx ImportError: No module named 'wx' When I check my python path it is version 3.3 (/Library/Framewo

Re: wxPython Boxsizers

2014-11-06 Thread Joy Deep
I am using Python 2.7.6 Here is the code I am trying: import wx class MyFrame(wx.Frame): def __init__(self, *args, **kid's): wx.Frame.__init__(self, *args, **kwds) self.button_1 = wx.Button(self, wx.ID_ANY, "button_1") self.button_2 = wx.Button(self, wx.ID_ANY, "button

Re: wxPython Boxsizers

2014-11-06 Thread Mark Lawrence
/wxpython-users also available as http://news.gmane.org/gmane.comp.python.wxpython -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence -- https://mail.python.org/mailman/listinfo/python-list

Re: wxPython Boxsizers

2014-11-06 Thread Joel Goldstick
On Thu, Nov 6, 2014 at 5:13 AM, Jaydip Chakrabarty wrote: > Hello, > > I am new to Python. I am learning boxsizer. I want to put two buttons on > my panel. One at top right corner and one at bottom right corner. How do > I achieve this? > > Thanks First, what version of python. What is boxsizer?

wxPython Boxsizers

2014-11-06 Thread Jaydip Chakrabarty
Hello, I am new to Python. I am learning boxsizer. I want to put two buttons on my panel. One at top right corner and one at bottom right corner. How do I achieve this? Thanks -- https://mail.python.org/mailman/listinfo/python-list

Re: Marco's atexit issue was: Re: ANN: wxPython 3.0.1.1

2014-09-15 Thread Marco Prosperi
;GetEventHandler() == this" >> failed >> at . >> .\..\src\common\wincmn.cpp(478) in wxWindowBase::~wxWindowBase(): any >> pushed eve >> nt handlers must have been removed >> > > > Post some code? Sounds like you're trying to interact with a wxPython > object in a function using atexit.register(AtExit)... which likely is > always going to happen after the wx Destroy method is all done. > > -- https://mail.python.org/mailman/listinfo/python-list

Marco's atexit issue was: Re: ANN: wxPython 3.0.1.1

2014-09-12 Thread Nathan McCorkle
" > failed > at . > .\..\src\common\wincmn.cpp(478) in wxWindowBase::~wxWindowBase(): any > pushed eve > nt handlers must have been removed > Post some code? Sounds like you're trying to interact with a wxPython object in a function using atexit.register(AtExi

wxPython latest

2013-12-20 Thread Mark Lawrence
As wxPython was mentioned a week ago some of you may be interested in these http://article.gmane.org/gmane.comp.python.wxpython.devel/5680 http://article.gmane.org/gmane.comp.python.wxpython.devel/5675 -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for

Consumer level eye tracking - easy activation of virtual buttons without touchscreen - wxpython for buttons, & AutoIt for macros behind buttons?

2013-11-25 Thread Jeff Kang
ently running, or what window is in focus, the use of F1 could change again; it can get confusing. It would be more intuitive to look at a virtual button that is actually labeled, "Clipboard Google Search", and then tap my activation key. *wxpython for buttons, & AutoIt for macros

[ActivePython] Add Qt/PyQt and wxWidgets/wxPython?

2013-08-08 Thread Gilles
Hello I upgraded to ActivePython 2.7.2.5, and would like to get started learning about Qt and wxWidgets in Python. I have a couple of question: 1. Are there obvious reasons to choose either QT/PyQt or wxWidgets/wxPython? I have the impression that Qt is a richer GUI than wxWidgets, but it could

Re: "The system cannot find the path specified[...]" wxPython strange bug

2013-06-06 Thread Jeicam
It seems like it constructs path wrongly(as I have seen before), but why sometimes it works and sometimes doesn't(so maybe sometimes it generates path correctly)? -- http://mail.python.org/mailman/listinfo/python-list

"The system cannot find the path specified[...]" wxPython strange bug

2013-06-06 Thread m2cl3k
Hi, I'm developing plugin for sublime text 2. I'm importing wxPython module and sometimes I get following error: [code] Reloading plugin C:\Users\User\AppData\Roaming\Sublime Text 2\Packages\User\my_plugin.py Traceback (most recent call last): File ".\sublime_plugin.p

Re: Does a wxPython program not run on 64bit Windows?

2012-08-24 Thread Laszlo Nagy
On 2012-08-24 07:37, Levi Nie wrote: Does a wxPython program not run on 64bit Windows? Did you at least try to download wxPython? Because the download page shows the 64bit and the 32bit versions as well. :-) http://wxpython.org/download.php By the way, the 32bit version will gladly run on

Re: Does a wxPython program not run on 64bit Windows?

2012-08-24 Thread Mark Lawrence
On 24/08/2012 06:37, Levi Nie wrote: Does a wxPython program not run on 64bit Windows? I saw this “ wxPython is a cross-platform toolkit. This means that the same program will run on multiple platforms without modification. Currently supported platforms are 32-bit Microsoft Windows, most Unix

Does a wxPython program not run on 64bit Windows?

2012-08-23 Thread Levi Nie
Does a wxPython program not run on 64bit Windows? I saw this “ wxPython is a cross-platform toolkit. This means that the same program will run on multiple platforms without modification. Currently supported platforms are 32-bit Microsoft Windows, most Unix or unix-like systems, and Macintosh OS

Re: wxpython using variable with wx.statictext ignores \n

2012-06-01 Thread MRAB
On 01/06/2012 07:24, Simon Cropper wrote: Hi, I have some wxPython code created with wxGlade that I am customizing. I have a label created under the def __init__() section of the Frame Class. It states... self.Question = wx.StaticText(self, -1, "My question...") if I in

wxpython using variable with wx.statictext ignores \n

2012-06-01 Thread Simon Cropper
Hi, I have some wxPython code created with wxGlade that I am customizing. I have a label created under the def __init__() section of the Frame Class. It states... self.Question = wx.StaticText(self, -1, "My question...") if I insert a new line character in this string like

Re: Are there any instrumentation widgets for wxpython or tkinter?

2012-05-20 Thread CM
On May 17, 5:00 pm, Peter wrote: > Or wxPython is another good alternative. Download the demo and have a look at > the widgets people have already used/created. I think there are some good > choices for instrumentation (from memory). Yes, wxPython has some that are applicable: LEDN

Are there any instrumentation widgets for wxpython or tkinter?

2012-05-18 Thread memilanuk
PyQt4 has built-in widgets for things like digital counters & dials... kind of surprising there aren't more instrument related widgets out there... -- http://mail.python.org/mailman/listinfo/python-list

Re: Are there any instrumentation widgets for wxpython or tkinter?

2012-05-17 Thread Peter
Or wxPython is another good alternative. Download the demo and have a look at the widgets people have already used/created. I think there are some good choices for instrumentation (from memory). -- http://mail.python.org/mailman/listinfo/python-list

Re: Are there any instrumentation widgets for wxpython or tkinter?

2012-05-16 Thread Mark R Rivet
On Sat, 12 May 2012 12:40:28 -0700 (PDT), Sverre wrote: >I searched for widgets used for PLC automation or lab instrumentation >like gauges, led's etc. in the net, but didn't found anything because >of those massive link spam sites. In the case there isn't any >solution, with which toolkit would

Are there any instrumentation widgets for wxpython or tkinter?

2012-05-14 Thread Sverre
I searched for widgets used for PLC automation or lab instrumentation like gauges, led's etc. in the net, but didn't found anything because of those massive link spam sites. In the case there isn't any solution, with which toolkit would it be easiest to build gauges? -- http://mail.python.org/mail

Re: keeping twisted and wxPython in sync

2012-02-07 Thread crow
On Feb 8, 2:41 am, "Littlefield, Tyler" wrote: > Hello all: > I have a couple questions. First, is there a way to know if connectTCP > failed? I am writing a client with Twisted and would like to be able to > notify the user if they couldn't connect. > Second, I set the protocol on my factory afte

Re: keeping twisted and wxPython in sync

2012-02-07 Thread crow
On Feb 8, 2:41 am, "Littlefield, Tyler" wrote: > Hello all: > I have a couple questions. First, is there a way to know if connectTCP > failed? I am writing a client with Twisted and would like to be able to > notify the user if they couldn't connect. > Second, I set the protocol on my factory afte

keeping twisted and wxPython in sync

2012-02-07 Thread Littlefield, Tyler
Hello all: I have a couple questions. First, is there a way to know if connectTCP failed? I am writing a client with Twisted and would like to be able to notify the user if they couldn't connect. Second, I set the protocol on my factory after a connection has been made. So when I send my user a

Gui Builder for Python an wxPython

2011-10-24 Thread blueeagle2
wxPython designer. I would even be willing to buy one if it was not too expensive and had descent tutorials and documentation. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python hangs: Problem with wxPython, threading, pySerial, or events?

2011-10-17 Thread Ethan Swint
I just wanted to bump this back onto the list since I posted over the weekend. Thanks, Ethan On 10/15/2011 11:17 AM, Ethan Swint wrote: Hi- I'm experiencing crashes in my Win32 Python 2.7 application which appear to be linked to pyzmq. At the moment, I can't even kill the "python.exe *32"

Python hangs: Problem with wxPython, threading, pySerial, or events?

2011-10-15 Thread Ethan Swint
Hi- I'm experiencing crashes in my Win32 Python 2.7 application which appear to be linked to pyzmq. At the moment, I can't even kill the "python.exe *32" process in the Windows Task Manager. At the moment I'm running the script using Ipython by calling C:\Python27\pythonw.exe "/python27/sc

Re: Button Label change on EVT_BUTTON in wxpython!!!

2011-08-29 Thread Rob Williscroft
Ven wrote in news:aa1212bb-35e5-4bf9-b8ad-7a3c083749c2 @x2g2000yql.googlegroups.com in gmane.comp.python.general: > So, here is what I did/want: > > self.run_button=wx.Button(self.panel,ID_RUN_BUTTON,label='Install') > self.Bind(wx.EVT_BUTTON, self.OnRun,id=ID_RUN_BUTTON) > > def OnRun(self,evt)

Re: Button Label change on EVT_BUTTON in wxpython!!!

2011-08-28 Thread Philip Semanchuk
On Aug 28, 2011, at 9:30 PM, Ven wrote: > Some system info before proceeding further: > > Platform: Mac OS X 10.7.1 > Python Version: ActiveState Python 2.7.1 > wxPython Version: [url=http://downloads.sourceforge.net/wxpython/ > wxPython2.9-osx-2.9.2.1-cocoa-py2.7.dmg]wxP

Button Label change on EVT_BUTTON in wxpython!!!

2011-08-28 Thread Ven
Some system info before proceeding further: Platform: Mac OS X 10.7.1 Python Version: ActiveState Python 2.7.1 wxPython Version: [url=http://downloads.sourceforge.net/wxpython/ wxPython2.9-osx-2.9.2.1-cocoa-py2.7.dmg]wxPython2.9-osx-cocoa-py2.7[/ url] I want the button label to be changed while

Re: WxPython and TK

2011-08-09 Thread gb
azrael writes: > OK, now. Isn't it maybe time to throw out TK once and for all? no, because Tk has a clear advantage over many other UI tolkits Tk _was designed_ and it was designed by very competent people [1] good luck with smurfs' hunting [2], ciao

Re: WxPython and TK

2011-08-08 Thread Philip Semanchuk
On Aug 7, 2011, at 8:26 PM, azrael wrote: > Today I found a quote from Guido. > > wxPython is the best and most mature cross-platform GUI toolkit, given a > number of constraints. The only reason wxPython isn't the standard Python GUI > toolkit is that Tkinter was there f

Re: WxPython and TK

2011-08-08 Thread python
nd above. http://www.tkdocs.com/tutorial/styles.html Tk/Ttk is a much lighter weight GUI than wxPython and allows for commercial quality, cross-platform GUI development. Malcolm -- http://mail.python.org/mailman/listinfo/python-list

Re: WxPython and TK

2011-08-08 Thread ln4
azrael wrote: > Today I found a quote from Guido. > > wxPython is the best and most mature cross-platform GUI toolkit, given a > number of constraints. The only reason wxPython isn't the standard Python > GUI toolkit is that Tkinter was there first. -- Guido van Rossum &g

Re: WxPython and TK

2011-08-07 Thread Steven D'Aprano
On Mon, 8 Aug 2011 10:26 am azrael wrote: > Today I found a quote from Guido. > > wxPython is the best and most mature cross-platform GUI toolkit, given a > number of constraints. The only reason wxPython isn't the standard Python > GUI toolkit is that Tkinter was there

Re: WxPython and TK

2011-08-07 Thread Gregory Ewing
azrael wrote: If I would have gotten a dollar for every time I talked to someone in a company about why they dont use python for their products and I was served the answer "Well it kind of sucks in GUI development", I would be a millionaire. Even assuming that Python + wxPython

Re: WxPython and TK

2011-08-07 Thread Ian Kelly
On Sun, Aug 7, 2011 at 6:26 PM, azrael wrote: > Today I found a quote from Guido. > > wxPython is the best and most mature cross-platform GUI toolkit, given a > number of constraints. The only reason wxPython isn't the standard Python GUI > toolkit is that Tkinter was the

WxPython and TK

2011-08-07 Thread azrael
Today I found a quote from Guido. wxPython is the best and most mature cross-platform GUI toolkit, given a number of constraints. The only reason wxPython isn't the standard Python GUI toolkit is that Tkinter was there first. -- Guido van Rossum OK, now. Isn't it maybe time to th

wxPython - Tools for creating docs for wxPython App

2011-04-30 Thread R . Faxli
Hi, what are the "canonical" tools for the creation of docs for a wxPython based application? Thanx R -- http://mail.python.org/mailman/listinfo/python-list

ANNOUNCE: wxPython 2.8.12.0

2011-04-19 Thread Robin Dunn
Announcing -- The 2.8.12.0 release of wxPython is now available for download at http://wxpython.org/download.php. This release has no major new features or enhancements, but there have been plenty of bug fixes since the last stable release. Source code is available as a tarball, and

Re: drawing polygons in Google Earth using wxpython

2011-04-12 Thread zoolbool
On Mar 20, 10:20 pm, "!!AhmedLegend!!" wrote: > ...i am working on my graduation project and i need to draw some > polygons in Google Earth map automatically using python so any one was > subjected to something like that or have a solution plz respond > ASAP ...given that i was able to open Google

drawing polygons in Google Earth using wxpython

2011-03-20 Thread !!AhmedLegend!!
...i am working on my graduation project and i need to draw some polygons in Google Earth map automatically using python so any one was subjected to something like that or have a solution plz respond ASAP ...given that i was able to open Google Earth from python and focus on a certain point and als

Re: WxPython versus Tkinter.

2011-03-02 Thread Gregory Ewing
Corey Richardson wrote: What are those gaps? That depends on what you consider to be essential. Things I would like to add include: * Combo box * Group box * Tab panel (aka "notebook") * Table view * Tree view * Rich text editor -- Greg -- http://mail.python.org/mailman/listinfo/python-list

Re: WxPython versus Tkinter.

2011-03-02 Thread Corey Richardson
On 03/02/2011 07:40 PM, Gregory Ewing wrote: > Octavian Rasnita wrote: > >> How complete is this GUI lib compared with others that can be used in >> Python apps? > > It has most of the basic things you would want. There are one > or two gaps, and I'm working on filling them. What are those gaps

Re: WxPython versus Tkinter.

2011-03-02 Thread Gregory Ewing
Octavian Rasnita wrote: How complete is this GUI lib compared with others that can be used in Python apps? It has most of the basic things you would want. There are one or two gaps, and I'm working on filling them. "Get the library and its documentation included in the core Python distributi

Re: WxPython versus Tkinter.

2011-03-02 Thread Gregory Ewing
Terry Reedy wrote: PyGui seems to be purely a gui package, but it appear to be aimed only at 2.x with no interest in 3.x. I'm working on 3.x conversion right now and should have something ready soon. -- Greg -- http://mail.python.org/mailman/listinfo/python-list

Re: WxPython versus Tkinter.

2011-03-01 Thread Gregory Ewing
rantingrick wrote: All we have to do is create an abstraction API that calls wxPython until we can create OUR OWN wxPython from WxWidgets. There seems to be at least one other project around like that: http://dabodev.com/ -- Greg -- http://mail.python.org/mailman/listinfo/python-list

Re: wxPython SQLite and Reportlab demo

2011-02-25 Thread Beppe
On 25 Feb, 08:33, Tim Roberts wrote: > Beppe wrote: > > >I would recommend this my little work on sourceforge. > > >http://sourceforge.net/projects/pyggybank/ > > >you can download an exe (pyggy_w32.7z)  make with py2exe > >and the source  (pyggy_source.7z) > >the project is named Pyggy Bank. > >

Re: wxPython SQLite and Reportlab demo

2011-02-24 Thread Tim Roberts
Beppe wrote: > >I would recommend this my little work on sourceforge. > > http://sourceforge.net/projects/pyggybank/ > >you can download an exe (pyggy_w32.7z) make with py2exe >and the source (pyggy_source.7z) >the project is named Pyggy Bank. Nowhere, in either this announcement or your source

Re: wxPython in the context of Eclipse

2011-02-20 Thread Brendan Simon (eTRIX)
On 20/02/2011 10:00 PM, python-list-requ...@python.org wrote: Subject: wxPython in the context of Eclipse From: Fred Marshall Date: Sat, 19 Feb 2011 23:22:44 -0800 To: python-list@python.org I asked earlier: How do I use wxPython or wxGlade in the context of Eclipse? A link to a howto

wxPython in the context of Eclipse

2011-02-19 Thread Fred Marshall
I asked earlier: How do I use wxPython or wxGlade in the context of Eclipse? A link to a howto would be great! I guess nobody knows or cares to answer? :-( -- http://mail.python.org/mailman/listinfo/python-list

Re: Suggested editor for wxPython on Ubuntu

2011-02-17 Thread Verde Denim
On Thu, Feb 17, 2011 at 1:27 PM, Cousin Stanley wrote: > > usenet.digi...@spamgourmet.com wrote: > > > Ok, I've decided that Boa Constructor is too buggy to be useful > > under Ubuntu, so what would the team recommend for developing > > Python projects with wx

Re: Suggested editor for wxPython on Ubuntu

2011-02-17 Thread Cousin Stanley
usenet.digi...@spamgourmet.com wrote: > Ok, I've decided that Boa Constructor is too buggy to be useful > under Ubuntu, so what would the team recommend for developing > Python projects with wxPython? Preferably with some GUI design capability? perhaps python-wxglade

  1   2   3   4   5   6   7   8   9   10   >