▶️ Watch Entire Tkinter Playlist ✅ Subscribe To My UA-cam Channel: bit.ly/2UFLKgj bit.ly/2IGzvOR ▶️ See More At: ✅ Join My Facebook Group: Codemy.com bit.ly/2GFmOBz ▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt! Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN ▶️ Get The Code bit.ly/3vMPT4G
Brilliant, thanks John. Your courses have made such a difference to my bumbling programming skills. I actually managed to make a treeview search function work albeit different way to yours just from bits from your different courses. Thank you for passing on your skills
Starting to look like an old Cobol program 😄 from back in the days. How about a report button and a print command? Thanks for all the Tkinter help John !
Thank you for your tutorials! I am creating an app with multiple search entry boxes. I would like the app to ignore the entry boxes that are left empty and only search the inputs the user keyed in. And similarly if all entry boxes are empty, the app should return all the records in my database. How do I do that? Any help is appreciated!
Hats off sir 😍😍 how can we make this programme executable. i tried pyinstaller but it gives errors... can you make a video to make it possible to make executable database programms......
John sir thanks for the series ...I have been able to complete my project by your videos . Thanks alot . I wanted a lil bit help , actually I wanted the data to be printed in a CSV file ,can you please tell how can I do that ?
You should use ttk Widgets it looks modern like, ttk.Button() ttk.Entry() But it has a point that you cannot change fg nor bg of them as they have their own style..
Okay. So I'm working on my treeview with my book database. I was trying to add a combobox instead of entry boxes in a couple of places. I've got the combobox on the screen, I can select an item and print it to the screen, but I haven't been able to get the selected item to the database. And as I was doing this, using update record, I realized adding a new record would have different code. Can you do a video on this? Thanks!
Brilliant sir,Sir Can u make SQL data fatch only first name who space appier between two words combobox ,I make it but it's show error of () after fatch
Hi Sir, This treeview project help me a lot in py project but I have an issue. When I add a data from the button and i want immediatly to make a research on this data that return me nothing, like this in my terminal : [ ] I dont know from where this issue is coming from but if you can help on this that will save me :) Thx for all of your videos and have a good day.
@@Codemycom the way you did it using the list box, I want it if u can do it using treeview e.g. Lets assume am searching a certain name from the treeview i need that to be done like if there's the name Toshiba, Mitsubishi in the table rows. If i press T on my keyboard, the system should be able to respond by showing matching characters and hiding unmatching characters. I hope am clear now
▶️ Watch Entire Tkinter Playlist ✅ Subscribe To My UA-cam Channel:
bit.ly/2UFLKgj bit.ly/2IGzvOR
▶️ See More At: ✅ Join My Facebook Group:
Codemy.com bit.ly/2GFmOBz
▶️ Learn to Code at Codemy.com ✅ Buy a Codemy T-Shirt!
Take $30 off with coupon code: youtube1 bit.ly/2VC9WUN
▶️ Get The Code
bit.ly/3vMPT4G
Brilliant, thanks John. Your courses have made such a difference to my bumbling programming skills. I actually managed to make a treeview search function work albeit different way to yours just from bits from your different courses. Thank you for passing on your skills
Nice work!
Starting to look like an old Cobol program 😄 from back in the days.
How about a report button and a print command? Thanks for all the Tkinter help John !
Congratulations. Great videos.
Thanks!
Thank you for your tutorials! I am creating an app with multiple search entry boxes. I would like the app to ignore the entry boxes that are left empty and only search the inputs the user keyed in. And similarly if all entry boxes are empty, the app should return all the records in my database. How do I do that? Any help is appreciated!
I just love how you are genuinely excited about what you do 😊. Can we also have a sort column feature like in file explorers? Thanks
Thanks! We'll see..
Thanks 🙏
Welcome
Great Video John, thanks. However getting an error, is there somewhere the complete code for the "Search"?
as I say in the video, the code is in the pinned comment.
Thanks and solved the issue
Hats off sir 😍😍 how can we make this programme executable. i tried pyinstaller but it gives errors... can you make a video to make it possible to make executable database programms......
John sir thanks for the series ...I have been able to complete my project by your videos . Thanks alot . I wanted a lil bit help , actually I wanted the data to be printed in a CSV file ,can you please tell how can I do that ?
I have a course for sale at Codemy.com that teaches how to create excel spreadsheets with python.
You should use ttk Widgets it looks modern like, ttk.Button() ttk.Entry() But it has a point that you cannot change fg nor bg of them as they have their own style..
I like doing it the way that I do it.
No, we can change the bg and fg of ttk widget using ttk.style()
Is there a way to use a search bar without clicking a button? Then, once you type in stuff, it would automatically start removing the unwanted data.
Do you mean through telepathy? You can use bindings. I have lots of videos on binding.
How to do dynamic search in the list?
Okay. So I'm working on my treeview with my book database. I was trying to add a combobox instead of entry boxes in a couple of places. I've got the combobox on the screen, I can select an item and print it to the screen, but I haven't been able to get the selected item to the database. And as I was doing this, using update record, I realized adding a new record would have different code. Can you do a video on this? Thanks!
Pretty sure I have a video on adding a record already
Can you do a search bar for tkinter app using a excel?
Brilliant sir,Sir Can u make SQL data fatch only first name who space appier between two words combobox ,I make it but it's show error of () after fatch
1st
Nice
Can i also use this for text files
how so?
how do I change the search to wildcard si if they search for 'a' only all last names with a will appear. I am stucked
In the normal sqlite way. Google: sqlite wildcard search
Hi Sir,
This treeview project help me a lot in py project but I have an issue.
When I add a data from the button and i want immediatly to make a research on this data that return me nothing, like this in my terminal : [ ]
I dont know from where this issue is coming from but if you can help on this that will save me :)
Thx for all of your videos and have a good day.
I have the same issue and couldn't find a solution yet.
@@maxprofane2 Same problem. Anyone found a fix?
@@maxprofane2 Apparently it somewhat works ? I can search for records, but it has to be precise. For some reason it seems to ignore 'LIKE' function
found this to solve the problem: c.execute("SELECT * FROM project_table WHERE projectname LIKE '%"+lookup_record+"%'")
Hey, can you start a series on robotics with Python, can't find good tutorials for the same, so asked you if you can?
No
For John, Python Programming Language is *pudding* 🍮
For me too
ha
Awesome but how do we do for live search
What do you mean by live search? All searches are live
@@Codemycom the way you did it using the list box,
I want it if u can do it using treeview e.g.
Lets assume am searching a certain name from the treeview i need that to be done like if there's the name Toshiba, Mitsubishi in the table rows. If i press T on my keyboard, the system should be able to respond by showing matching characters and hiding unmatching characters.
I hope am clear now
Hey Sir, Can you do tutorials on Visual Basic?
Thx
That's not really a thing anymore is it? Didn't Microsoft announce they're pulling the plug on it?
👌
:-)
wth, why you didn't go OOP with tkinter ?