0
votes
1answer
29 views

wxPython Dialog freezes after ShowModal

Here the code directly, worth thousand words of explaining it. #!/usr/bin/env python2 import wx class TestDialog(wx.Dialog): def __init__self(*arg, **args): wx.Dialog.__init__(self, ...
0
votes
1answer
41 views

pass terminal output to GUI using wxpython

Hi all i am using python 2.7 and for GUI wxpython, in linux environment. I wants to redirect output from terminal to Message box, how it will happen? My code is: p = subprocess.call(" grep "Wanted" ...
-1
votes
3answers
35 views

Iterating over controls in wxPython in order to save session data

I have a GUI written in wxPython (with boa constructor). I would like to save a user's session to a file, to be loaded the next time the application starts. I would like to avoid saving each value ...
0
votes
1answer
36 views

How to converter Pyw to executable in Ubuntu?

i have a wxPython(with Python 2.7 64x) script, and this script was been created on Ubuntu 12. Well, i wanna execute this wxPython as executable on Windows(doubleclick), but on Ubuntu. I tried change ...
-1
votes
2answers
149 views

How to integrate simpleGUI with python 2.7 and 3.0 shell

I am learning Python from coursera. In this course they use simpleGUI module on Codeskulpture. Can anyone tell me how to integrate simpleGUI with python 2.7 and 3.0 shell... Thanks
1
vote
1answer
49 views

passing variables from one class to another in wxpython

I have a problem with passing textCtrl data from one class to another in wxpython. I tried using the instance method of passing variables but if I use init_function it is only relevant at the start ...
0
votes
2answers
36 views

how do you connect the virtual keys so that they print to the text field on top?

i set up the format of the hebrew keyboard but cant figure out how to get the keys to work so that what you type is shown in the text field on top. "keyboard" contains a function for each key. in ...
3
votes
1answer
39 views

object has no attribute show

I have installed wxpython successfully which i verified by import wx But when I write a code import wx class gui(wx.Frame): def __init__(self,parent,id): wx.Frame.__init__(self, ...
0
votes
2answers
57 views

Enthought Mayavi embedding with wx problems

At first my running system: I use Windows 8 Pro and Mayavi 4.3 from the repository together with wxPython 2.9.4.0 at Python 2.7.4 but also had the same issue with mayavi 4.2.1 from the EPD package... ...
0
votes
1answer
29 views

How to Keep Live Video in pythoncard

I have a PythonCard GUI Form with the Image, Signatue filelds. I need to capture the image from the Live stream, I am trying to inject my live video as a pythoncard component like staticbox or ...
0
votes
0answers
20 views

Let thread-daemon wait until a certain “final value” is met

I have a small issue with a deamon process I'm running inside my Python script. This is my main script; # -*- coding: utf-8 -*- import os import wx import threading from library.gui import WebGui ...
1
vote
0answers
34 views

Global event listeners in wxPython

I have a wx.html2 widget in my panel. Sadly wx.html2 doesn't have many event listeners (http://wxpython.org/Phoenix/docs/html/html2.WebView.html#events-events-emitted-by-this-class). Now I have this ...
0
votes
3answers
55 views

Wxpython gui for task scheduler

I'am asked to develop a GUI similar to a trigger window in task scheduler.I am trying my best to do it and i am stuck in creating multiple panels in a single frame.Below is the snapshot of how my GUI ...
0
votes
1answer
34 views

wxPython unexpected indent [duplicate]

Starting on wxPython and getting an unexpected indent error. File "gui_texteditor_men.py", line 18 helpMenu= wx.Menu() ^ IndentationError: unexpected indent I've checked my code, (im using ...
0
votes
2answers
70 views

wxPython with data string as message

How can I use wxPython to take data string which is obtained as part after calculations and display it as a message or report with OK/Cancel options? It would then be upto me to either save or cancel ...
0
votes
1answer
59 views

wx.StaticBitmap - simple transparency (mask, png, bmp?)

After 1 week of constant failure I'm still not able to do a simple task: Load a png with alpha channel or with white background (in example bellow) and have it maintain its transparency in ...
0
votes
1answer
40 views

images in layers with movement and transparency - wxpython

It might sound unproper 'images in layers' like in Photoshop but in fact that is what I have and would like to make working. I use a set of wx.boxsizer's to have a nice&organized screen after ...
1
vote
2answers
37 views

call a function from another function within the class

My class is, class MainFrame(wx.Frame): def __init__(self,parent,ID,title): wx.Frame.__init__(self, parent, ID, title, style=wx.DEFAULT_FRAME_STYLE ^ wx.RESIZE_BORDER ^ ...
1
vote
2answers
78 views

Redirect command prompt output to a python generated window

Developed a script which builds a project using msbuild. I have GUI developed using wxpython which has a button on which when user clicks would build a project using msbuild. Now, i want to open a ...
1
vote
1answer
121 views

Read a command prompt output in a separate window in python

I have a python script which builds a solution file using msbuild on windows system.I want to show the command prompt output when the build process is running.My code something looks like below def ...
0
votes
1answer
120 views

Matplotlib bar chart in a wx Frame instead of a new window

I have a simple wxFrame and two panels in it. i want one of the panels to show a matplotlib bar chart. I learnt to use the chart, but the show() function that I use gives me the chart in a new window. ...
0
votes
1answer
39 views

How do I keep shell or IDLE shell from opening when running wxPython

I have tried using pythonw and this only works if I drop and drag the file onto it. I remember reading somewhere there is a way to keep this from happening in the code but I can't find it. Thanks in ...
0
votes
2answers
47 views

how to access attributes of list objects?

panel=wx.Panel(self) panel.SetBackgroundColour(wx.WHITE) font = wx.Font(8, wx.DEFAULT, wx.NORMAL, wx.BOLD) self.field1 = wx.TextCtrl(panel,pos=(120,25),size=(170,20)) ...
0
votes
0answers
82 views

CheckListBox widget size (height) fitted to items in it in wxPython

I have CheckListBox widget in my app. During its life-cycle I am removing or adding new items to it. I would like to change its size (especially height) in an "automated" way. I would like to change ...
-1
votes
1answer
68 views

How to display variables in a MessageBox [closed]

I have this code: def OnClick(self, event): lan1 = self.a.Getvalue() lan2 = self.b.Getvalue() Now I want to use a MessageBox, which should display the lan1 and lan2 values in it. How ...
0
votes
1answer
64 views

Displaying current output in wx.textctrl wigdet from python code entered in another wx.textctrl

I use two wx.TextCtrl widgets in my wxApp. The first one is used to provide Python code by app user, e.g.: from time import sleep for i in range(4): print i sleep(4) The second ...
-1
votes
2answers
37 views

how to get value from spinctrl and send it to .exe file in python script

I am new to python and wxpython, I am making a automated tool using python and for user interface wxpython and i use shell script.shell script can be called from the python. but now I am facing ...
0
votes
1answer
69 views

Show progress bar when running a script

I have developed the python script for checking out a source code from repository and build it using visual studio.When i run the script,a GUI opens(developed using wxPython) which shows a ...
0
votes
1answer
26 views

wxPython: control navigation within wx.Lisbook wx.Panels

world! I'd like to ask you one question, a simple solution (I guess) for a nerve-wracking problem I'm encountering using a wx.Lisbook component of wxPython. In fact, I want to switch from a wx.Panel ...
0
votes
1answer
83 views

wx.ListBox selection event

I am using wx.Python to develop a GUI under MacOS. the widget making me crazy is a simple ListBox. here's the instance self.values = wx.ListBox(self, wx.ID_ANY, style = ...
-1
votes
2answers
81 views

Not Implemented error in wxPython

I'm getting this error whenever I run my wxpython code. Traceback (most recent call last): File "musicplayer.py", line 203, in MyPanel(frame, -1) File "musicplayer.py", line 17, in ...
4
votes
1answer
67 views

How to read a directory whose name has characters like “ / ”?

I'm working on OSX 10.5.8 that permits even "/" on filename characters. I have a wx.TextCtrl containing a directory to read (directory of music artists), there are bands called like this //Tense// ...
2
votes
1answer
61 views

wxPython wxScrolledWindow functions raising TypeError

I'm trying to learn how to use the wxPython wxScrolledWindow class for a project, and I've run into a wall. I've set up a program that makes a panel derived from the wxScrolledWindow class containing ...
1
vote
1answer
44 views

how to send data from child frame to main frame using wxpython

I am new to wxpython ,i wanted to know how we can send data from child frame to main frame in wxpython? Here is brief discription about my prog: child frame has spinctrl and a button , when we ...
0
votes
1answer
41 views

what's wrong with this image on a wx.boxsizer

would like to have a boxsizer with an image (that may change) on the left and a label on the right. so i create this code, but there's something wrong with it, but i don't understand why. i'm a newbie ...
0
votes
1answer
39 views

how to set the interpreter of wxpython for eclipse once for all

I've Eclipse, python 2.7, wxpython 2.8, and OSx 10.5.8 I would like wxpython is included correctly in my eclipse environment, to have not all the wxpython commands underlined as errors. I've imported ...
4
votes
2answers
123 views

TypeError: Argument given by name “id” and position(2) — wxPython

I'm attempting to make tabs in wxPython using the Notebook class. Using the tutorial linked above, I came up with the following code: #!/usr/bin/env python import wx class DeployTab(wx.Panel): ...
1
vote
1answer
100 views

wxpython - converting PIL.ImageFont to wx.Font or wx.Bitmap

Background: I am writing a module to create custom splash screens with multiple progress bars (0-5). The splash screen can display in multiple modes (full screen frame-less, % of screen w/wo frames, ...
1
vote
1answer
169 views

wxPython - how to colour the text of a statusbar

I searched for the answer in the forum, but I didn't find anything, if I am wrong, I am sorry. Anyway, question is simple, I have this Frame, with a Status Bar I use to print messages or notifies. I ...
0
votes
1answer
92 views

wxPython FileDialog crash in mac

I have the following code: import wx from sys import platform wildcard = "CSV files|*.csv|"\ "XML files|*.xml|"\ "Microsoft Excel files|*.xlsx" if platform == "win32" else "CSV ...
0
votes
2answers
123 views

Having difficulty understanding wx.Sizers in wxPython

wxPython is very poorly documented and understanding sizers is abit difficult, ive had to print off code and study it piece by piece to understand what it does, and easier ways to memorize how it ...
1
vote
1answer
553 views

wxPython Background image on frame

MMGP Answerd but wont let me credit him right ;-) So I will at least mention him here. (And I did finally get to credit him... 8-) His linked discussion on Double Buffering provided a base code ...
0
votes
1answer
120 views

how do i write a program to click a particular link in Python

My program takes an user input and searches it through a particular webpage . Further i want it to go and click on a particular link and then download the file present there . Example : The webpage ...
1
vote
1answer
186 views

wxPython: get data in variables from Google Spreadsheet and also from user, work with all variables, return results to user

I hope I didn't miss any topic that could answer my problem. I'm here now because I'm terribly frustrated and tired with the following task: - I have a Spreasheet with Drive.Google with lots of data ...
0
votes
1answer
49 views

Can we embedd a ComboBox or a TextCtrl on the ObjectListView of wxPython?

If this is possible, can you show some code example? Thanks in advance.
1
vote
2answers
232 views

How to fetch process,thread name,levelname in customized python logger

I am developing customized logger program,as per the requirement i need to fetch the process,thread and name of object Inside the called function(In below example its obj needs to fetch inside the ...
1
vote
1answer
66 views

Centralized Tracking of User's log in multiuser python App

I developed UI(User interface) application in python,this application can be accessed by n-number of users at same time(multiuser business application). please help me to build centralized logger ...
2
votes
1answer
333 views

wxpython refresh window on button press

I have been having some trouble with my Python program. Basically, it is a very very simple file manager. I have been trying to get it to move between folders (user clicks a folder, program ...
0
votes
1answer
113 views

WxPython:How to stop further code execution in main parent frame until its sub-frame has been closed

I am working on a project coded in python with GUI in Wxpython for last 3 sleepless night now I got struck.Actually inside main parent frame I am executing a new subframe in another thread all I want ...
0
votes
1answer
210 views

How to manipulate wx.ProgressDialog using wx.Python

actually I got a bunch of questions about wx.ProgressDialog in wx.Python. First of all I have written a piece of code that opes 2 files does some calculations and writes the results in a new file. ...

1 2