Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~603 People Reached
Favorite Forums
Favorite Tags

4 Posted Topics

Member Avatar for oiwah

No. At least from what I have seen. You can build a client that, after the user downloads and installs, will process data pulled from the internet.However, you are looking for a web programming gui interface, and HTML, JavaScript/Flash, Silverlight are meant for this purpose. Again, maybe wxPython has some …

Member Avatar for TrustyTony
0
198
Member Avatar for joryrferrell

I'm sort of on the way, but my current method will require me to save the converted array first, then display it. What are a few ways I could use wxPython, numpy, and scipy to efficiently display the changes realtime, without saving every damned time? I don't need actual code, …

Member Avatar for Gribouillis
0
104
Member Avatar for Stefano Mtangoo

You could pick up the book 'wxPython In Action'. Better than nothing at all, and it focuses solely on python gui using wx.

Member Avatar for joryrferrell
0
136
Member Avatar for joryrferrell

It starts off fine, after starting the countdown function and pressing the Action button, it causes the program to freeze. [CODE] import wx import time class LeftPanel(wx.Panel): def __init__(self, parent, id): wx.Panel.__init__(self, parent, id, style=wx.BORDER_SUNKEN) self.text = parent.GetParent().rightPanel.text self.text_2 = parent.GetParent().rightPanel.text_2 button1 = wx.Button(self, -1, 'Count', (10, 10)) button2 = …

Member Avatar for joryrferrell
0
165

The End.