tkmessagebox

tkinter messagebox without console

tkinter messagebox without console Question: Facing a problem when converting my .py file to .exe using pyinstaller –noconsole, the messagebox won’t work in exe file except if I created it without using –noconsole or –windowed. I have tried to not use –noconsole and use .pyw file instead but this won’t make the the console hidden …

Total answers: 1

Change tkMessageBox "askyesno" button names

Change tkMessageBox "askyesno" button names Question: How can I change button names of tkMessagebox.askyesno function? Exactly I want to change yes-button text yes with other and no-button text too Asked By: godot || Source Answers: You can’t just simply modify the button text. You need to create a custom dialog. For example (taken from http://tkinter.programujte.com/tkinter-dialog-windows.htm): …

Total answers: 1

Can I adjust the size of message box created by tkMessagebox?

Can I adjust the size of message box created by tkMessagebox? Question: I want to create information dialogue with tkMessagebox with a fixed width. I didn’t see any options in the tkMessagebox.showinfo function that can handle this. Is there any way? Thanks! Asked By: Fxyang || Source Answers: As far as I’m aware you can’t …

Total answers: 2

Correct way to implement a custom popup tkinter dialog box

Correct way to implement a custom popup tkinter dialog box Question: I just started learning how to create a custom pop up dialog box; and as it turns out, the tkinter messagebox is really easy to use, but it also does not do too much. Here is my attempt to create a dialog box that …

Total answers: 7