Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
49 views

Python packed EXE blanks screen for a second on windows how to stop this?

I have created an EXE from a python GUI program I have put together, this all works fine as far as function goes, but whenever someone runs it their screen goes black for a second then comes back to ...
2
votes
2answers
76 views

Python- Displaying a message box that can be closed in the code (no user intervention)

I am creating test scripts using Python. I need to have a message displayed to the user while the script continues to run. This is to have some status update , for eg: "Saving test results" which ...
2
votes
1answer
76 views

How can I force a window full screen in python (using easyGUI)

I am just starting out using easyGUI with Python, and am running in to a bit of trouble. I want my application to run in full screen. However, I can not figure out how to get this to work. This could ...
2
votes
2answers
937 views

Close an easygui Python script with the standard 'close' button

I've created a very simple app, which presents an easygui entrybox() and continues to loop this indefinitely as it receives user input. I can quit the program using the Cancel button as this returns ...
1
vote
1answer
73 views

Positioning an easygui.enterbox or easygui.multenterbox

Is there a way to specify the position of an easygui.enterbox or easygui.multenterbox on the screen? And hopefully to read the current position if the user moves the window? I have an infinite ...
1
vote
3answers
106 views

List of guesses Python

I am just learning python and I wrote this, but I want to show all the guesses and maybe whether they are too high or low. The "responseList" part is where I need help. Thanks! import random, ...
1
vote
4answers
209 views

to program GUI app , what will be the must user and developer frendly toolkit in c++

Hello all i like to build desktop application , that will be must user friendly in view what i mean is that the look and feel will be natural in the way the user used to see windows apps . and this ...
0
votes
1answer
69 views

Python, easyGUI and sqlite3: Using python to read files in one folder or multiple folder, then adding the folder names and filenames to database

I am new in python and am trying to add folder names and text files in those folders to the database. The problem is that i don't know how to add the "textfiles" and "opendirectory" to the database. ...
0
votes
1answer
33 views

How do I write multi enter box input into .txt?

How do I make it so that "file.write(repr(fieldNames1))" writes what I input into "fieldNames1"? import easygui #Multi Enter Box fieldNames1= ['Situation:(Example: Waiting for a friend who is ...
0
votes
1answer
21 views

How do I define name 'feildNames1'?

I've been googling and I cannot find a solution. Would someone please share a working example? import easygui #Multi Enter Box fieldNames1= ['Situation:(Example: Waiting for a friend who is ...
0
votes
1answer
51 views

python with flashdrives and linux commands

I have 2 questions. So i am making a python program that will backup and restore a selected directory for me. This is my first program and i am using easygui as my gui for this program. what i want ...
0
votes
1answer
54 views

How do I make a multienterbox in Easygui?

This is my best attempt at a multienterbox with Easygui and Python. Would someone please give me a working example? import easgui (fieldNames= ['Year','Month','Day','Time Hour','Time Minute', 'AM or ...
0
votes
1answer
58 views

Another Token error: EOF in multi-line statement

The following code gives me this error "Token Error: EOF in multi-line statement". I cannot seem to find the error though! Maybe someone else will see it? import easygui import time namegui = ...
0
votes
2answers
139 views

Token error: EOF in multi-line statement

The following code gives me this error "Token Error: EOF in multi-line statement". What is this error? How can I fix it? import easygui import time namegui = easygui.enterbox(msg='Enter your name:', ...
0
votes
1answer
69 views

How do I make an easygui Multi Enter Box?

How do I make an easygui Multienterbox with all of the questions below in one window? namegui = easygui.enterbox(msg='Enter your name', title='Name query', default='Gian') baigui = ...
0
votes
1answer
31 views

Easygui input error

The following code gives me an error. import easygui result = easygui.enterbox(message="Enter your name", title="Name query", argDefaultText="Ian Ozsvald") This is the error. Traceback (most ...
0
votes
1answer
78 views

Python: easygui, how to select multiple files?

I am using fileopenbox() and I want to select all text files I have when the windows box is open. I have tried to press shift or ctrl + A, but it didn't work. openfile = fileopenbox("Welcome", ...
0
votes
3answers
90 views

LCD screen Corrupting

I am using msp430f5418 with st7565r LCD controller with easyGUI. I am using SPI to communicate with LCD. Suppose I have a screen like this But sometimes(rarely) when I press a key (anything which ...
0
votes
0answers
22 views

System is getting stuck somewhere while editing the fault text on easyGUI screen

System is getting stuck somewhere while editing the fault text on easyGUI screen. This happens only while scrolling the cursor left to right. The moment it is stuck, I can see a garbage value loaded ...
0
votes
1answer
817 views

How to install EasyGUI on Mac OS X 10.6 (Snow Leopard)?

I would like to install EasyGUI on Mac OS X 10.6, but am running into trouble. Has anyone successfully done this? If so, what explicit set of steps did you follow? Thank you.
0
votes
1answer
700 views

How to use Python's Easygui module to pick files and insert filenames into code

I'm trying to use Python's easygui module to select a file and then insert it's name into a program I wrote (see code below). So I want to insert filename 1 and 2 where it says insert filename1, ...