Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
wxpython
- Page 1
Re: How did you learn about DaniWeb?
Community Center
Meta DaniWeb
2 Months Ago
by Reverend Jim
Just checking back, and the first two threads I started on Dniweb relatet to
wxPython
. When they weren't answered I cam to the realization that noboy else here was using it. After becoming more proficient in
wxPython
I eventually started posating tutorials on same using the development of my own projects as a basis.
Re: Which Python project should I use?
Programming
Software Development
1 Month Ago
by Reverend Jim
Using
wxPython
for your GUI elements will make it more portable to other platforms.
wxPython
also renders the elements in the target platform's native style. Usimg wxGlade (also free) to design the layout will make things much easier than doing it all by hand.
wxPython.org Down
Programming
Software Development
17 Years Ago
by asrekdal
wxPython
.org seems to be unreachable! Anyone else having this problem? thanks - andrew
Re: wxPython in Vista
Programming
Software Development
15 Years Ago
by scru
wxPython
is bloated, disorganized. There's a lot of …or dated. The only reason I would consider using
wxPython
is if I want to do a cross platform …I mean no offense to the
wxPython
devs; they seem like nice enough people.
wxPython
gets a lot of its … correct and pyQT does release an LGPL version, then
wxPython
may slowly fade away. And I won't be …
Re: wxPython in Vista
Programming
Software Development
15 Years Ago
by vegaseat
… with Python25 on my Vista machine. To me
wxPython
fits the bill, it's easy to install, it's … QT/pyQT, even though some Linux friends tell me that
wxPython
programs work well.
Re: wxPython help
Programming
Software Development
16 Years Ago
by Ene Uran
…them, so you understand self and __init__() better. Simple
wxPython
programs can be written without using class. Here is …A relatively good tutorial is from: [url]http://wiki.
wxpython
.org/index.cgi/AnotherTutorial[/url] If you haven't done… so, take a look at DaniWeb's
wxPython
thread at: [url]http://www.daniweb.com/forums/thread128350…
Re: wxpython help
Programming
Software Development
15 Years Ago
by shadwickman
… it populates the list with the results, find your
wxpython
package that you installed and remove it and any dependencies… Synaptic GUI again and search 'wx'. Then find the
wxpython
package that fits your version of Python (if you're…list the version number in the first line). Check the
wxpython
package and if it asks about other dependencies, allow …
Re: wxPython
Programming
Software Development
17 Years Ago
by ZZucker
Tutorials for the
wxPython
GUI toolkit: not bad ... [url]http://wiki.
wxpython
.org/AnotherTutorial[/url] this is one I like ... [url]http://zetcode.com/
wxpython
/[/url]
Re: wxpython
Programming
Software Development
18 Years Ago
by bumsfeld
… you have? Did you install proper version of
wxPython
? I have Windows XP and my wx package…wx\__init__.py Here is a simple sample of
wxPython
code: [code]import wx class MyFrame(wx.Frame… to wxID_ANY wx.Frame.__init__(self, None, wx.ID_ANY, '
wxPython
', pos=(300, 150), size=(300, 350)) self.SetBackgroundColour('green…
wxPython
Programming
Software Development
17 Years Ago
by Stefano Mtangoo
Hello guys, I'm new to python I want to use
wxPython
for Gui programming The main problem to me is how to start
wxpython
have good looking but then no documentation regards steve
Re: wxPython
Programming
Software Development
17 Years Ago
by davidjhay
I bought
wxPython
in action book, which really helped me. ISBN 1-932394-62-1. I have developed two applications that use
wxPython
. Both are stable and the users like the interface. Hope that helps. David
Re: wxPython help
Programming
Software Development
15 Years Ago
by lllllIllIlllI
… for all of your displaying text needs. [url]http://www.
wxpython
.org/docs/api/wx.StaticText-class.html[/url] This you… user input you can use wx.Button [url]http://www.
wxpython
.org/docs/api/wx.Button-class.html[/url] Or a… its data by using the GetValue() function [url]http://www.
wxpython
.org/docs/api/wx.TextCtrl-class.html[/url] Hope that…
wxpython help
Programming
Software Development
15 Years Ago
by rustysynate
I tried the first post on
wxpython
by fuse. The code is as follows # import wx # # always … you'll use # """The start of our
wxPython
GUI tutorial""" # # app = wx.App(redirect=False…
Re: wxpython help
Programming
Software Development
15 Years Ago
by shadwickman
…'s list of trusted keys in order to get the
wxpython
packages. To do this, first install [i]curl[/i] by… [icode]sudo apt-get update[/icode]. 4. Get and install
wxpython
and its dependencies with [icode]sudo apt-get install python…
Re: wxPython
Programming
Software Development
17 Years Ago
by Stefano Mtangoo
I have found good IDE though I haven't tested.wxDev-C++ , for use with Dev-C++. Is there anybody who knows how to configure it to work with
wxPython
? I saw them saying it is capable of exporting xml files,Is that helpful. with thanks steve
Re: wxPython
Programming
Software Development
17 Years Ago
by sneekula
A program called Boa Constructor is wxDev-CPP's couterpart for Python programming. It uses
wxPython
and has a drag and drop frame builder. See the post at: [url]http://www.daniweb.com/forums/post400296-107.html[/url]
Re: wxPython help
Programming
Software Development
16 Years Ago
by Ene Uran
It directs
wxPython
where to show errors/consoleIO. This will go to the … is the default app = wx.App() When I develop a
wxPython
program with an IDE editor that has its own output…
Re: wxPython help
Programming
Software Development
15 Years Ago
by jlm699
I suggest downloading the 'Docs and Demos' along with your
wxPython
install, as it gives you a great launch pad to start writing your own GUIs by giving you sample code of almost every single type of wx object. It's ridiculously helpful when starting
wxPython
.
Re: wxPython help
Programming
Software Development
15 Years Ago
by lllllIllIlllI
…]I suggest downloading the 'Docs and Demos' along with your
wxPython
install, as it gives you a great launch pad to… type of wx object. It's ridiculously helpful when starting
wxPython
.[/QUOTE] That is in fact a great idea, that and…
Re: wxPython help
Programming
Software Development
15 Years Ago
by Ene Uran
… for some widgets you are interested in: [code=python]# a
wxPython
example for label widgets (wx.StaticText) # and an entry or…(wx.Frame): def __init__(self, parent, mytitle): # -1 = wx.ID_ANY (
wxPython
will pick a unique id value) wx.Frame.__init__(self…
Re: wxPython help
Programming
Software Development
15 Years Ago
by Stefano Mtangoo
This tutorial helped me alot to start
wxPython
[url]http://zetcode.com/
wxpython
[/url]
Re: wxpython help
Programming
Software Development
15 Years Ago
by vegaseat
Let's hope your code does not look like the one you showed. Try to run just this ... [code=python]import wx [/code]If a similar error message comes up, then there is something wrong with your
wxPython
installation.
Re: wxpython help
Programming
Software Development
15 Years Ago
by rustysynate
Yes i am getting the same error. Any suggestion to remove and reinstall the
wxpython
. I installed in the ubuntu 8.04.
Re: wxpython help
Programming
Software Development
15 Years Ago
by vegaseat
… new post and title it "How to uninstall/reinstall
wxPython
on Linux?". My initial guess would be to use…
wxpython
Programming
Software Development
18 Years Ago
by skanker
I want to use
wxpython
, but when I installed it python didn't recognise the module. I've looked everywhere for help but gotten nowhere so could someone help me out?
Re: wxpython
Programming
Software Development
18 Years Ago
by vegaseat
The proper installation sequence is this way: 1) install the Python version for your operating system 2) install
wxPython
for your version of Python and OS
wxPython
Programming
Software Development
17 Years Ago
by GRaymer
Just wondering if anyone has experience with
wxPython
. I've been looking for info about the spinButton I want to increment it at 5's or 10's just wondering if anyone has some quit hints or info. Thanks
wxPython help please?
Programming
Software Development
17 Years Ago
by dreambreeze
I'm relatively new to programming in
wxPython
and I have been trying to put a BoxSizer within …
wxPython help
Programming
Software Development
16 Years Ago
by revenge2
Having trouble understanding using
wxPython
....:?: [CODE=Python] import wx class MainFrame(wx.Frame): def __init__(…
Re: wxPython help
Programming
Software Development
16 Years Ago
by Stefano Mtangoo
… class MainFrame(wx.Frame): def __init__(self): #wx.ID_ANY means
wxpython
should assign any unique identity you can write wx.ID_ANY…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC