Questions tagged [pythoncard]

PythonCard is a cross-platform GUI construction kit for building desktop applications using the Python language.

PythonCard is a cross-platform GUI construction kit for building cross-platform desktop applications on Windows, Mac OS X, and Linux. PythonCard relies on wxPython for its GUI functions. Last version of PythonCard is 0.8.2 from 2006. Development seems to have been stopped from that point.

27 questions
0
votes
2 answers

Does Pythoncard have an on change event?

I want to do some validation whenever the value of a textfield changes. I don't see an on change event mentioned in the documentation though.
Greg
  • 45,306
  • 89
  • 231
  • 297
0
votes
1 answer

How to Change Mouse Cursor in PythonCard

How do I change the mouse cursor to indicate a waiting state using Python and PythonCard? I didn't see anything in the documentation.
Greg
  • 45,306
  • 89
  • 231
  • 297
0
votes
1 answer

I'm just getting started with PythonCard...

So, I'm just getting started with PythonCard and I can't get the most basic app to work :S I'm trying to assign values in TextFields to variables on clicking a button; please see if you can understand what the problem is :D My python main file: from…
0
votes
1 answer

Windows 8 Alternative to PythonCard?

I have a Windows 8 and PythonCard would not install because of a missing Dll file. (MSVCR72) I tried to install the .dll through multiple methods and it did not work so I now assume that the problem is because I have a Windows 8. (because most…
0
votes
2 answers

Making a PythonCard File Dialog single select?

I'm working on a python application and have chosen to build the gui with PythonCard. I have need to have the user select a file to open, and in the context, selecting more than 1 file doesn't make sense. I can successfully create a file dioalog…
shsteimer
  • 28,436
  • 30
  • 79
  • 95
0
votes
2 answers

Pythoncard textarea how to set text

I have created a textarea in my python project using Pythoncard The problem is, I don't know how to call it in my project to change the text. It's called myTextArea. Thanks
Lilz
  • 4,013
  • 13
  • 61
  • 95
0
votes
1 answer

How to stop a thread in python

I am using thread in my python card application. whenever i press the refresh button i am calling a function using thread, when the function was called, there will be a another function inside the main function. what i want is whenever the child…
Krish gopi
  • 155
  • 4
  • 12
0
votes
0 answers

How Python card text Component will change

Hi I want to know how the code works in python for the below Def func1(self): self.components.mytextbox.text = 'Yes' while 1: time.sleep(100) self.components.mytextbox.text = 'No' if…
PSSR
  • 471
  • 1
  • 10
  • 18
0
votes
1 answer

PythonCard not getting 'enter' KeyEvent in Windows

I'm sorry if this is a newbie question, but I am writing a PythonCard program and I want it to do something when I press the enter key from inside a TextBox. My code is below: def on_SampleTextField_keyDown(self, event): if event.keyCode ==…
ac0xr
  • 15
  • 1
  • 4
0
votes
1 answer

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 staticArea Does PythonCard have the inbuilt Video…
harihara
  • 75
  • 9
0
votes
1 answer

Trouble Adding The Save Menu Item To My GUI

I used PythonCard to make my GUI and the only menu items I have currently are Save and Exit. Exit is fully functional and closes the program; but when I click on Save nothing happens. I can only assume the command is wrong. I have done some thorough…
0
votes
1 answer

Button Transition

I am programming wxPython with GUI aid from pythonCard. The resource editor has made short work of my display so far. The GUI has static boxes "cards" with information that the program outputs. I would like to transition to a different page on…
1
2