combobox

update a combobox tkinter

update a combobox tkinter Question: I am trying to make an application that changes the content of a combo box if the corresponding text file (which determines the value variable) is changed I already have this code in place but it is only updating after a program restart. #image browser def mod_dir_browser(): old_moddir = oldmoddirfile …

Total answers: 1

Python Tkinter: Unbinding Mouse Scroll Wheel on ComboBox

Python Tkinter: Unbinding Mouse Scroll Wheel on ComboBox Question: I have a combobox within a scrollable canvas frame- when I open the combobox and attempt to scroll through the options, the combobox and the entire window both scroll together. It would be nice to pause canvas scrolling while the combobox is open, but unbinding the …

Total answers: 2

TKinter ComboBox Variable Issue

TKinter ComboBox Variable Issue Question: I am trying to use tkinter, more specifically customtkinter, to create a combobox and have a variable in the first combobox determine what another combobox’s options are. I think the syntax maybe a little different since it is customtkinter rather than standard. Seeing if anyone can take a look at …

Total answers: 1

How do I enable multiple selection of values from a combobox?

How do I enable multiple selection of values from a combobox? Question: Python 3.4.3, Windows 10, Tkinter I am attempting to create a combobox that allows for multiple selections from the dropdown. I have found similar work for listbox (Python Tkinter multiple selection Listbox), but cannot get it work with the combobox. Is there a …

Total answers: 4

python tkinter combobox/button

python tkinter combobox/button Question: I just started to use python and tkinter, I have created a gui with two combobox and ‘run’ buttons which contain two different options ‘SPMI’ and ‘RFFE’. What I want my script to do is, when I select different options and click ‘run’ it should run the SPMI.py or RFFE.py file. …

Total answers: 2