▶ Watch CustomTkinter Playlist ✅ FREE Tkinter Widget Book bit.ly/45iO4OP bit.ly/3K4qlZC ▶ See More At: ✅ Subscribe To My KZbin Channel: Tkinter.com bit.ly/3Pk1By4 ▶ MASSIVE TKINTER.COM DISCOUNT ✅ Join My Facebook Group: 30% off with coupon code: youtube bit.ly/2GFmOBz ▶ Get The Code For This Video bit.ly/3dCzz2K
@Tomandjerry-zk8pb2 ай бұрын
Your video is always helpful 😊😊😊😊
@sergioduque4123 Жыл бұрын
Hello! thank you for doing this set of tutorials it's been a great help! I'm getting an error with the comboBox tho, (object has no attribute "configure") do you have any idea of what that could be? cheers and again thanks for the work!
@sergioduque4123 Жыл бұрын
My mistake! I was doing my_combo = customtkinter.CTkComboBox().place() and my variable was getting the place atts as well, giving the error
@pajfab25912 ай бұрын
I realy need the postcommand that was working with tkinter combobox to update the values when I exit a second windows , and it does not work ....
@pajfab2591Ай бұрын
If I have a CTK ComboBox (for companies for sample ) on main window , then open a toplevel window to manage the companies, I add one company , then I come back to the main window the command of the CTK combo Box do not work as the postcommand of tkinter combobox used to work . with the old postcommand the values of the combobox were updated , with the command of CTK combobox no , I must click on the button and click an item , then close and open the dropdown list again to see the values updated ...... do you plan a solution ?
@hendrikd5544 Жыл бұрын
Hello! Thanks for all these great videos, they help me a lot! I just wanted to ask, if it's possbile to have a scrollable box of the displayed options in the combobox. In my use case there are way too many options and therefore they fill the whole screen. Thanks in advance!
@Codemycom Жыл бұрын
Hm, not sure...try putting your combobox in a scrollable frame and see how it goes
@xvekii323611 ай бұрын
Hey, did you solve your problem?
@mitchellmiller384323 күн бұрын
Yes, it's possible. Huge pain in the ass to implement it correctly. At least in my case, where I was trying to do that, in addition to enhance the functionality to allow the user to search the list and have it dynamically filter out results.
@sovereignlivingsoul10 ай бұрын
if you were to disable the button, how would you suppress the error output, thanks for the Tkinter book, looking forward to a long read
@TkinterPython10 ай бұрын
what do you mean?
@sovereignlivingsoul10 ай бұрын
@@TkinterPython at 20:59, you disable the input button and then you pressed the pick yellow button and the error output went to the screen, if you wanted to disable the button, could you redirect the error output
@TkinterPython10 ай бұрын
Sure probably@@sovereignlivingsoul
@TSPxEclipse7 ай бұрын
Put it in a try-except block. Just be sure that you specify the exact errors you want to bypass in the except clause or else you could be ignoring errors that completely break the program.
@TSPxEclipse7 ай бұрын
One super annoying thing about the CTkComboBox widget is that if the list of values is pretty big, instead of popping open a small dropdown with a scroll bar it just fills the entire height of your screen and puts arrow buttons at the top and bottom. Extremely inconvenient for what I need it for, and I'm not sure if there's a way to change it to being able to use the scroll wheel. That's why I came here, to see if that was an option. Also, I'm not sure what I'm doing wrong but I can't programmatically change what the combo box is set to the same way shown because using the set method raises an AttributeError.
@bertproeme4535 Жыл бұрын
How to create shapes e.g. Arrows and act on it (called event in C++ Builder) when touched. I use a RSPi and Python and like to control an output pin with touching the arrow.
@robvanbakkum2029 Жыл бұрын
Great tutorials. Everything has been going well with Ctk so far... but I'm really stuck with the combo box... Is this just me or Mr. Schimansky? Please try before you answer.
@TkinterPython Жыл бұрын
Well I have no idea what problem you're having, so I couldn't possibly say...except to say I've had no problems with it, as evidenced in this video.
@robvanbakkum2029 Жыл бұрын
Thanks for the quick response. pip uninstall and pip install solves the problem.
@shubhendersingh515211 ай бұрын
How to make 2 interlinked comboboxes where list of options in second combobox is based on selection from first combobox
@TSPxEclipse7 ай бұрын
Get the string for the selected option and pass it into a function that picks the list of values to be used for the next combo box in the sequence. That's how I'd do it, anyway.
@PazzoRagazzo029 Жыл бұрын
Hello Mister. In Customtkinter is there any chance I can show a help text box when I hover over a label or entry? I'm referring to those little white boxes that show information.
@NguyenMinh-hv5ej5 ай бұрын
It's a little late but I think you can create a frame and bind the event to open it when you hover over the label/entry