Python Forum
Linking Comboboxes
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Linking Comboboxes
#11
self.cboCust['values'] = (fill_custbox())
self.cboCust.bind('<<ComboboxSelected>>', fill_addrbox)
self.cboAddr['values'] = (fill_addrbox())
Exception in Tkinter callback
Traceback (most recent call last):
File "D:\Python 3.7.9\lib\tkinter\__init__.py", line 1705, in __call__
return self.func(*args)
TypeError: fill_addrbox() takes 0 positional arguments but 1 was given

But if I put event in like this def fill_addrbox(event): I get this:
builtins.TypeError: fill_addrbox() missing 1 required positional argument: 'event'

and then if I put event here: self.cboAddr['values'] = (fill_addrbox(event)) I get: builtins.NameError: name 'event' is not defined
Reply


Messages In This Thread
Linking Comboboxes - by MrP - Jan-24-2021, 05:08 PM
RE: Linking Comboboxes - by Larz60+ - Jan-24-2021, 06:49 PM
RE: Linking Comboboxes - by MrP - Jan-24-2021, 07:32 PM
RE: Linking Comboboxes - by Larz60+ - Jan-24-2021, 09:31 PM
RE: Linking Comboboxes - by MrP - Jan-30-2021, 01:35 PM
RE: Linking Comboboxes - by deanhystad - Jan-31-2021, 04:09 AM
RE: Linking Comboboxes - by MrP - Jan-31-2021, 11:41 AM
RE: Linking Comboboxes - by deanhystad - Jan-31-2021, 02:14 PM
RE: Linking Comboboxes - by MrP - Jan-31-2021, 04:10 PM
RE: Linking Comboboxes - by deanhystad - Jan-31-2021, 04:34 PM
RE: Linking Comboboxes - by MrP - Jan-31-2021, 09:04 PM
RE: Linking Comboboxes - by MrP - Jan-31-2021, 09:41 PM
RE: Linking Comboboxes - by MrP - Jan-31-2021, 09:45 PM
RE: Linking Comboboxes - by MrP - Jan-31-2021, 06:37 PM
RE: Linking Comboboxes - by deanhystad - Jan-31-2021, 08:41 PM
RE: Linking Comboboxes - by deanhystad - Jan-31-2021, 09:33 PM
RE: Linking Comboboxes - by deanhystad - Jan-31-2021, 10:12 PM
RE: Linking Comboboxes - by MrP - Feb-01-2021, 12:06 PM
RE: Linking Comboboxes - by deanhystad - Feb-01-2021, 03:04 PM
RE: Linking Comboboxes - by MrP - Feb-01-2021, 09:39 PM
RE: Linking Comboboxes - by deanhystad - Feb-01-2021, 10:41 PM
RE: Linking Comboboxes - by MrP - Feb-02-2021, 12:29 AM
RE: Linking Comboboxes - by deanhystad - Feb-02-2021, 01:03 AM
RE: Linking Comboboxes - by Serafim - Feb-02-2021, 09:06 AM
RE: Linking Comboboxes - by MrP - Feb-03-2021, 10:59 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Can't get tkinter database aware cascading comboboxes to update properly dford 6 3,764 Jan-11-2022, 08:37 PM
Last Post: deanhystad
  Print Values from a Sequence of Entries / ComboBoxes MC2020 4 2,873 Mar-28-2020, 10:05 PM
Last Post: MC2020
  [PyQt] making dependant comboBoxes Hitsugaya 3 5,092 May-23-2019, 06:05 PM
Last Post: Alfalfa

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020