Python Forum
need help with combobox Python 2.7
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
need help with combobox Python 2.7
#4
Look at the links I put in the post. They point to docs I believe you need.
It's not difficult. Here's one I did in wxpython:
    def rfc_selector_load(self):
        """
        Clears, then Loads self.rfc_selector ListCtrl with data from self.rfc_index dictionary.
        :return: None
        """
        self.rfc_selector.DeleteAllItems()
        for key, value in self.rfc_index.items():
            index = self.rfc_selector.GetItemCount()
            self.rfc_selector.InsertItem(index, key)
            self.rfc_selector.SetItem(index, 1, value['title'])
Reply


Messages In This Thread
need help with combobox Python 2.7 - by ZipSnipe - Feb-04-2018, 06:24 AM
RE: need help with combobox Python 2.7 - by Larz60+ - Feb-04-2018, 11:46 AM
RE: need help with combobox Python 2.7 - by Larz60+ - Feb-04-2018, 05:06 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [PyQt] How can I sync Combobox index to other combobox index? nickzsche 2 2,406 Jan-03-2022, 12:29 PM
Last Post: Axel_Erfurt
  [PyQt] Control a combobox from another python file PyQt5 prath 0 2,290 May-05-2020, 03:22 PM
Last Post: prath
  [python] [Tkinter] Problem bidding combobox with np.array NEL 3 3,428 Aug-04-2019, 11:07 AM
Last Post: Yoriz

Forum Jump:

User Panel Messages

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