Questions tagged [easygui]

EasyGUI is a module for very simple, very easy GUI programming in the Python programming language.

EasyGUI is a module for very simple, very easy GUI programming in the Python programming language.

196 questions
2
votes
2 answers

Python: Easygui Window Size

I'm creating a GUI for my python script in EasyGUI. Does anyone know of a way I can change the default Window size? The default is far too big. Thanks for your help.
BubbleMonster
  • 1,366
  • 8
  • 32
  • 48
2
votes
1 answer

Writing to easygui textbox as function is running?

I am currently running a script using easygui to receive the user input. The old script that ran in a command line would just print anything the user needed to know in the command line, but I've changed it to output notifications in new easygui…
Benjooster
  • 544
  • 2
  • 6
  • 20
1
vote
2 answers

How do choiceboxes work in Python easygui?

I mean I've set up a choicebox. msg = "What would you like to do first?" title = "Economy v1.0" choices = ["Check your bank balance", "Check the value of the stocks", "Check what stocks you own", "Buy stocks",…
Michael Curry
  • 991
  • 8
  • 20
1
vote
1 answer

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 loop asking for user input and want to keep the…
1
vote
1 answer

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 recent call last): File "/Volumes/CHROME …
gian848396
  • 459
  • 1
  • 8
  • 24
1
vote
1 answer

Python EasyGUI Changing Taskbar Icon

I've been using easyGUI to build a GUI for my python script. I'm having trouble finding a way to change the taskbar icon. I am also using pyinstaller to convert the python file to a exe and was able to change the exe's icon, but when I run the file…
1
vote
1 answer

How to stop a thread that has a blocking function from easygui in python

Context I am using the easygui library to make a simple interface for my program. In the program, I need to start a process that takes time and the user can cancel it if he is tired of waiting. Code Here is a minimal example code: import easygui as…
Davi A. Sampaio
  • 374
  • 2
  • 12
1
vote
3 answers

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, easygui secret = random.randint (1, 100) …
1
vote
0 answers

While Loop - constant variables NOT working with user input boundaries

So the VALUE_MAX variable is = to 25, and VALUE_MIN is = to 1. When I type 26, or 0, it is supposed to pop up and give the user another chance to input a value within 1-25 range (in easygui window). I have written this code, but I am not sure what…
Bob
  • 11
  • 3
1
vote
0 answers

I need to edit/overwrite a text file that holds a customers information using easygui and i need to select which customers information i am editing

This is my python code you will need easy gui to run it and the username is q and the password is 1 i need to select a customer and then overwrite there information and not change the id number that it already has the code is from a different…
1
vote
1 answer

ModuleNotFoundError: No module named 'global_state'

For the small project I'm working on, I have to use the package easygui with import easygui. I believe I installed it correctly, but now I'm getting the error: ModuleNotFoundError: No module named 'global_state' From my understanding, it has…
James Marlin
  • 13
  • 1
  • 7
1
vote
1 answer

python: is there any function that allows you to start a new line in easygui?

if I wanted an output to be completely string, is there a function that works in a similar way to < br > or < /br > does in html? for example: "hello
my
friend" would be output as: hello my friend but for easygui in python?
1
vote
0 answers

Constantly updating message box within easygui multenterbox

I am coding up some request form, which will be typed in by user. The two boxes that are displayed are shown below: The input box is generated using the following lines: fieldNames= ['',''] fieldNames= ['START DEPTH','END DEPTH'] inputs =…
akkab
  • 401
  • 1
  • 6
  • 19
1
vote
0 answers

Trying to export and use login info using easygui

I am trying to create a login screen, which does the following - Create a user. - Safely store a password, never in texform. Should be stored as Hash. - modify a user(password) - Reset password - Delete user info So far I am stuck and struggeling…
Raymond
  • 11
  • 1
1
vote
1 answer

Python 3.6 open a message box using Tkinter and continue with the script

I have a script that runs a program and then begins a while True loop. I want to open a message box using easyGUI (that simplifies tkinter, so essentially, I want to open a message box using tkinter) and then enter into the while loop. When the…
dotmicron
  • 31
  • 5
1 2
3
13 14