I wanted to express my sincere gratitude for your excellent teaching. Your explanations were clear and concise, and you made the lesson easy to understand. Thank you for your time and dedication. Sincerely,
You are good in what you do. Thanks very much, especially as you teach with English, helping those of us that aren't Indians to also follow your tutorials.
@@codinglifestyle4u i dont know what to say , bro is not taking any rests , you are the the best , may god grant you good health and will power to continue putting out free education for everyone
Check if the format of the image, the path of the image is correct. Make sure you are using a png image if it's a jpg image then you have to install a pillow library
@@codinglifestyle4u I checked, but when restart kernel then images shown and after some times, again error generated then restarts kernel again and again after3 times testing.
Brother, very clear explanation. I have seen the tutorial explanation, the dashboard. How if i want to put discount on some product? Can you code that also? Brother, i will appreciate that. Waiting for your answer
Assalamualaikum, Sir I just started this Inventry Managment System project from your video, have question that if we need our window to be auto size as per user current windows display, is that possible?
Thanks Sir, Just created dashboard along with your video and completed just one question again that how to automatically size window to the user screen, kindly guide for that, I will share the screen shot of dashboard, Thanks!.
@codinglifestyle4u I have been following one of your project which is the inventory management system; but I have completely stuck in connecting my mysql with database I created for managing the employee details.
Brother can you give an idea as to how we can make an interface having say options to add items to a list/box, and each option has an image and a description beside it...which can be scrolled, I'm not getting how to begin...
Interested in your project, but I'm new to python. I wonder in which program you write the code and how to connect the database and code in Python? Can i write code in VSCode?
I was doing exactly the same as you're teaching, but adding the icon and text of total employees isn't showing on the dashboard. I don't know why. no errors showing, no typos .I don't know why
this is my code and I don't know where I am going wrong ef connect_database(): try: connection=pymysql.connect(host='localhost',user='root',password='1234') cursor=connection.cursor() except: messagebox.showerror('Error', 'Database connectivity issue, please open mysql command line client') return None, None cursor.execute('CREATE DATABASE IF NOT EXISTS inventory_system') cursor.execute('USE inventory_system') cursor.execute('CREATE TABLE IF NOT EXISTS employee_data (empid INT PRIMARY KEY, name VARCHAR(100),email VARCHAR(100), gender VARCHAR(50),' 'dob VARCHAR(30), contact VARCHAR(100),employment_type VARCHAR(50), education VARCHAR(100), work_shift VARCHAR(50),' 'address VARCHAR(100), doj VARCHAR(30), salary VARCHAR(50), usertype VARCHAR(50),password VARCHAR(50))') return cursor,connection connect_database() def add_employee(empid, name, email, gender, dob, contact, employment_type, education, work_shift, address, doj, salary, usertype, password): if (empid=='' or name=='' or email=='' or gender=='Select Gender' or contact=='' or employment_type=='Select Type' or education=='Select level' or work_shift=='Select Shift' or address==' ' or salary=='' or usertype=='Select User' or password==''): messagebox.showerror('Error', 'All fields are required') else: cursor,connection=connect_database() if not cursor or not connection: return cursor.execute('INSERT INTO employee_data VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)',(empid, name, email, gender, dob, contact, employment_type, education, work_shift, address, doj, salary, usertype, password)) connection.commit() messagebox.showinfo('Success', 'Data is inserted successfully')
Thank you so much for your teaching .. but I have an issue , I hope you can solve my problem . I am not able to show table inside my database .. it will not properly connected either.. it show only error messagebox every time I try to connect... i'll do as you say in 3rd part but its not working for me.. can you plzzz guide me as soon as possible.. its my humble submission request..
I wanted to express my sincere gratitude for your excellent teaching. Your explanations were clear and concise, and you made the lesson easy to understand. Thank you for your time and dedication.
Sincerely,
Thanks for your kind words 😌
This is done. My search ends here. Thanks. 😊
Welcome
I am very impressed by your way of teaching. It's great! Very kind of you.
Thank you for your kind words I hope you will learn something because of me.
You are good in what you do. Thanks very much, especially as you teach with English, helping those of us that aren't Indians to also follow your tutorials.
Yeah do share it with others
I have seen you student management project and that way of teaching is awesome, yesterday I have completed the project
Thanks 👍
starting this today , thanks for sharing brother
U're welcome let me know if you don't understand anything.
@@codinglifestyle4u i just finished it , it was awesome , when should we expect the next parts to come out
Part 2 will be out tomorrow at 7pm ist
@@codinglifestyle4u i dont know what to say , bro is not taking any rests , you are the the best , may god grant you good health and will power to continue putting out free education for everyone
@@codinglifestyle4u and btw everything was clear and smooth
Video 1 (Dashboard Design) Completed. Thank you for this resource....
Congratulations 👏
Awesome videos! Great learning platform, thanks
Welcome
thank you so much , its a helpful video and also you explain in detail
Welcome
This step-by-step tutorial is very helpful, Can you provide a tutorial on implementing this same inventory management system using Django?
Sure soon
@@codinglifestyle4uok sir
Waiting......✨
Same project can i want create on Django it will work without using tkinter
No u will have to create using django
@codinglifestyle4u Thank you👍
Also sir, I have this error when adding image in titlelabel "TclError: image "pyimage4" doesn't exist" can you help me solve this?
Check if the format of the image, the path of the image is correct.
Make sure you are using a png image if it's a jpg image then you have to install a pillow library
@@codinglifestyle4u I checked, but when restart kernel then images shown and after some times, again error generated then restarts kernel again and again after3 times testing.
Send me the error pic on instagram coding_lifestyle_4u
@@codinglifestyle4u I am writing error here, (TclError: image "pyimage4' doesn't exist )
Each pyimage numbers change when error generated.
Brother, very clear explanation.
I have seen the tutorial explanation, the dashboard. How if i want to put discount on some product? Can you code that also?
Brother, i will appreciate that.
Waiting for your answer
Assalamualaikum, Sir I just started this Inventry Managment System project from your video, have question that if we need our window to be auto size as per user current windows display, is that possible?
Yes we can I guess, please check more about it on google
Hi coach. I would like you make a simple attendance management system of employees defining date, time of arrival and departure from firm
Ok I will
Thanks Sir, Just created dashboard along with your video and completed just one question again that how to automatically size window to the user screen, kindly guide for that, I will share the screen shot of dashboard, Thanks!.
Great job 👍
Hello, I have following your project in practising but I have completely stuck in connect mysql database with python tkinter.
What is the issue?
@codinglifestyle4u I have been following one of your project which is the inventory management system; but I have completely stuck in connecting my mysql with database I created for managing the employee details.
@codinglifestyle4u when try to connect it, I only have only one entry which is the empid field would record on the employee form.
Bro I am waiting for marriage bureau app. kindly upload its tutorial as soon as possible.
Yes soon I will add after finishing this one
Brother can you give an idea as to how we can make an interface having say options to add items to a list/box, and each option has an image and a description beside it...which can be scrolled, I'm not getting how to begin...
Can you ping me on Instagram coding_lifestyle_4u
@@codinglifestyle4u Sorry, I don't have instagram, and my parents don't allow me to use it...
Then ask this same question on chatgpt it will provide you the solution
Interested in your project, but I'm new to python. I wonder in which program you write the code and how to connect the database and code in Python? Can i write code in VSCode?
Start watching you will understand
Or you can ping me on instagram coding_lifestyle_4u
I was doing exactly the same as you're teaching, but adding the icon and text of total employees isn't showing on the dashboard. I don't know why. no errors showing, no typos .I don't know why
Send me the code pic on instagram coding_lifestyle_4u
hello..I am not able to save the data in the database
this is my code and I don't know where I am going wrong
ef connect_database():
try:
connection=pymysql.connect(host='localhost',user='root',password='1234')
cursor=connection.cursor()
except:
messagebox.showerror('Error', 'Database connectivity issue, please open mysql command line client')
return None, None
cursor.execute('CREATE DATABASE IF NOT EXISTS inventory_system')
cursor.execute('USE inventory_system')
cursor.execute('CREATE TABLE IF NOT EXISTS employee_data (empid INT PRIMARY KEY, name VARCHAR(100),email VARCHAR(100), gender VARCHAR(50),'
'dob VARCHAR(30), contact VARCHAR(100),employment_type VARCHAR(50), education VARCHAR(100), work_shift VARCHAR(50),'
'address VARCHAR(100), doj VARCHAR(30), salary VARCHAR(50), usertype VARCHAR(50),password VARCHAR(50))')
return cursor,connection
connect_database()
def add_employee(empid, name, email, gender, dob, contact, employment_type, education, work_shift, address,
doj, salary, usertype, password):
if (empid=='' or name=='' or email=='' or gender=='Select Gender' or contact=='' or
employment_type=='Select Type' or education=='Select level' or work_shift=='Select Shift' or address=='
' or salary=='' or
usertype=='Select User' or password==''):
messagebox.showerror('Error', 'All fields are required')
else:
cursor,connection=connect_database()
if not cursor or not connection:
return
cursor.execute('INSERT INTO employee_data VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)',(empid, name, email, gender, dob,
contact, employment_type, education, work_shift, address, doj, salary, usertype, password))
connection.commit()
messagebox.showinfo('Success', 'Data is inserted successfully')
Please recheck the code
Thank you so much for your teaching .. but I have an issue , I hope you can solve my problem .
I am not able to show table inside my database .. it will not properly connected either.. it show only error messagebox every time I try to connect... i'll do as you say in 3rd part but its not working for me.. can you plzzz guide me as soon as possible.. its my humble submission request..
Check if mysql is installed and you are using the correct username and password of mysql in the python code
Sir it is possible we display animation emoji in message box
No it is not possible in tkinter
@@codinglifestyle4u ok sir
Can you send me the dfd for this project,zero level and first level..?
Can u text me on instagram coding_lifestyle_4u
last time stamp: 48:30
How to add an interface for Customers to order Products online.
I'm sundhareswaran from Tamilnadu
Welcome to my channel
Sir can i do this project without using Tkinter
So you don't want to create the GUI?
@@codinglifestyle4u with the help of Django
Sir imaje b provide kir da is project ke thank u
@ image
I have added in the description.
an error show as tk is not defined
Can you send me the error pic on instagram coding_lifestyle_4u?
@@codinglifestyle4u ok
@@StanleyMariaAlwariswhere you helped? I'm having similar error
29:38
I really need your help please sir.
Text me on instagram coding_lifestyle_4u
Pourriez pas faire ce live en français?
Vérifiez les sous-titres en français
Hi bro
Hello
Hello, I have following your project in practising but I have completely stuck in connect mysql database with python tkinter.
Hello, I have following your project in practising but I have completely stuck in connect mysql database with python tkinter.
What is the error?