I designed a GUI application using wxPython that communicate with a local database (Mongodb) located in the same folder. My main application has the relative path to the datab开发者_如何学JAVAase daem
I am trying to make a window with 2 panels. One panel is just a notebook panel. The second panel contains a toolbar on top and a text control on the bottom. I want to arrange this panel in my frame us
Excuse the previous post, but I\'m learning wxpython before A month ago and I am new to use this language and I wanted some help in order to learn this language and it seems I am Aktit in the way of S
I have a list of Vertex objects, each with their own labels and id\'s.How can I use this list as a model for a wxPython ComboBox such that when a user selects an option, I can immediately retrieve the
Hi I would like to create a wxpython application with a window where I can create a network graph.I have heard (never used) of graphviz and开发者_运维技巧 NetworkX, but it seems to me that they only c
Here\'s my situation. Let\'s say I would like to create a thread that continually prints the number 1. When a button is clicked the val开发者_如何学运维ue should then change to 2. My issue is that I\'
I have some experience with 开发者_如何学Cpygtk, and I feel very comfortable with, except when the threads are necessary on windows, so I was wondering,
i have a custom Dialog class in file Dialog1.py class Dialog1(wx.Dialog): def __init__(self, prnt): wx.Dialog.__init__(self, id=wxID_DIALOG1, name=\'Dialog1\', parent=prnt,
I create a tree control: self.tree_cat = wx.gizmos.TreeListCtrl(self, -1, style=some-styles) Then I add columns:
I would like to have a new panel open from my mainPanel so that I can put text boxes to enter data and have a back button to go back to the mainPanel. Here is my code.