Python Forum
tkinter search box
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
tkinter search box
#3
Quote:Hi Joe_momma, I have checked the code that you posted and I have adapted it to my needs however it is not yet working. The problem I am facing is trying to read the data that is loaded into the Text widget. When I ran my code with the adapted portion of your code I get the following error:
Error:
Traceback (most recent call last):
File "C:\Users\ve3je\AppData\Local\Programs\Python\Python37\lib\tkinter\__init__.py", line 1705, in __call__
return self.func(*args)
File "C:\Users\ve3je\Documents\Python Projects\PBSnippet\PBSnippet-5 Cat Mod.py", line 83, in highlight
defs= Code_Snippet() #feed entry to dictionary
TypeError: 'Text' object is not callable
Please keep this to your original post-
in your first post you declare code_snippet as a text widget
Quote:Code_Snippet = Text(root, bg = '#FFFFDF', fg='#000000', bd=0, width=117, height=27, relief=SUNKEN, cursor='hand2')
in your error defs= code_snippet() code_snippet is a widget not a function that's why your getting an error, post your code or at least a workable section- when i said you are missing the step insert you should have a line that looks like this
Code_Snippet.insert('end','some-text','search') #(location, text or entry, tag)
Reply


Messages In This Thread
tkinter search box - by DT2000 - Apr-06-2020, 07:32 AM
RE: tkinter search box - by joe_momma - Apr-06-2020, 03:34 PM
RE: tkinter search box - by joe_momma - Apr-06-2020, 11:18 PM
RE: tkinter search box - by DT2000 - Apr-08-2020, 05:59 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Search data in treeview without search button TomasSanchexx 3 1,629 Aug-12-2023, 03:17 AM
Last Post: deanhystad
  [Tkinter] add search bar = search for input in all computer directory francisco_neves2020 15 10,962 Apr-14-2019, 07:29 PM
Last Post: francisco_neves2020
  [Tkinter] Problem with tkinter search widget poopcupine 1 2,697 Mar-25-2019, 08:24 AM
Last Post: Larz60+
  Python, Tkinter. How to search a specific file in a folder Roo 3 3,445 Feb-13-2019, 10:41 AM
Last Post: Larz60+
  [Tkinter] THow to search a string in a file and display it in listbox by Tkinter mosavit 2 5,665 Jun-21-2017, 08:02 AM
Last Post: buran

Forum Jump:

User Panel Messages

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