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
0
votes
0 answers

python easygui fileopenbox presents file selection differently in Linux than Windows

Running python easygui fileopenbox in Windows presents the typical Windows view that can be sorted by type, size, date, etc. In Linux however it's a file list only (like Windows list view), no columns, no options for anything else I can see. I'd…
Dave Gutz
  • 1
  • 1
0
votes
0 answers

How to make set choices with easygui from a list of files

python easygui glob I am beginner in Python and try to write a script that would help the user to choose between existing files in a given folder and its sub-folders having a common format (bib files in that case). I use easygui module to prompt a…
0
votes
0 answers

Selecting output from multchoicebox

I'm using a multchoicebox from easygui. Is it possible to have two different beavhiours when nothing is selected or when 'Cancel' is pressed? For example, when 'Cancel' is pressed, exit the script and when nothing is select a pop warning to select…
0
votes
0 answers

Trying to delete a specific list from a different file in python?

from re import I from easygui import * import reservationhold list = [] reserv_made = [] choices2 = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"] times1 = ["09:00 - 10:00", "10:00…
0
votes
0 answers

Room reservation program in Python EasyGUI. How to display chosen data in a message box & saving chosen data in a txt file?

I am working on a conference room reservation application and I need some help with it. I am a complete beginner. What I have till now: https://hastebin.com/irejasiyeh.lua What I want to code: When you select the time in the last step, a message box…
Pita
  • 11
0
votes
0 answers

How to set Window focus on an easygui message box

I am building a very simple python project that will allow the user to read a message in a box and then click OK. This will part of a larger program. The issue is that when I run it in Spyder, the message box ends up behind all other windows. How…
DataGirl
  • 429
  • 9
  • 21
0
votes
0 answers

Easygui Directory Open Box Issue

I have recently been working on a simple project for duplicating files, and I have made decent progress. However, while I was adding the feature to select the duplicated file's location, I ran into an issue. I am using easygui as the file and…
0
votes
1 answer

Python EasyGUI fileopenbox() filter more items

I want to set EasyGUI fileopenbox() to filter more filetypes and not just one. Here below is a code I tried but instead of custom files selection i get more selections. file=easygui.fileopenbox(title='Select image', filetypes=('*.png',…
user17279264
0
votes
1 answer

Why does my exe file made with pyInstaller fail to bring up the enterbox?

After stumbling through the dark for several days on a python script, I finally have a finished product that I want to deploy to the rest of the machines in the office. Portions of the script are posted below. The script works as intended when run…
Brandon
  • 21
  • 3
0
votes
0 answers

How to disable Cancel button for easygui in Python?

Hi guys I'm learning to use easygui for my school project, and for some boxes in easygui there's a "Cancel" button, to tap which will return a None value, which is quite troublesome to deal with especially in string processing. I wonder if there's…
ryrn
  • 1
0
votes
0 answers

Take user input with a dialog box during script run crashes python

I am trying to take user input during python script run so I can use it as variable. I can use input() but I want to make a popup dialog box that asks for user input to give it a nice touch. I used easygui library and it does create a popup but…
0
votes
0 answers

Remove Parenthesis and Quotes from items in tuple

I am creating a Python program to generate a returns report. I have created a simple GUI for my program that allows the user to select the categories they would like to run the report for. The only issue is that in the GUI, each selection has (' ',)…
cn_code
  • 3
  • 3
0
votes
3 answers

How to display TEXT ONLY (transparent background, with no menu bar or buttons) on screen using Python?

I have been looking everywhere for this kind of simple solution and I'm still coming up short. All I want to do is simply splash some text only onto the screen, without a background or using a "message box" that has a menu bar/buttons with it. Just…
wildcat89
  • 1,159
  • 16
  • 47
0
votes
1 answer

Set default values in easygui multienterbox

I have a struggle to find out how to set some default values into the fields of easygui multienterbox. Here is my code sample: from easygui import multenterbox msg = "Enter your personal information" title = "Form" fieldNames = ["Name", "Street…
david_p
  • 223
  • 1
  • 6
  • 17
0
votes
3 answers

When I try to install PySimpleGUI (4.53.0) in jupyter notebook using Python 3.8 the error "no module named 'PySimpleGUI' is returned

I have already used pip install pysimplegui, using pip list shows that it is installed in Terminal (I use a mac). I also made sure it was the most recent version of pysimplegui. I'm newer to coding some I'm not sure what other information to put…