Posts

Showing posts from May, 2024

Python project

  from tkinter import * app=Tk() h=app.winfo_screenheight() w=app.winfo_screenwidth() app.configure(height=h,width= w,bg="lightgreen") app.title("Employee Registration") frm = Frame(app,height="565",width=" 450",bg="violet") frm.place(x=60,y=65) frm = Frame(app,height="145",width=" 400",bg="violet") frm.place(x=600,y=70) l1=Label(app, text='EMPLOYEE REGISTRATION' , font=("verdana",20,"bold"),bg= "lightgreen",fg="black",width= 23) l1.place(x=500,y=20) l2=Label(app,text="Employee ID",fg="black",bg="white", font=("verdana",15,"bold"), anchor="w") l2.place(x=200,y=100) e2=Entry(app,font=("verdana", 15,"bold"),width="20",fg=" tomato") e2.place(x=150,y=150) l3=Label(app,text="Employee Name",fg="black",bg="white", font=("verdana"...

PYTHON PROJECT2

  from tkinter import * app=Tk() h=app.winfo_screenheight() w=app.winfo_screenwidth() app.configure(height=h,width= w,bg="lightgreen") app.title("Employee Registration") frm = Frame(app,height="565",width=" 450",bg="violet") frm.place(x=60,y=65) frm = Frame(app,height="145",width=" 400",bg="violet") frm.place(x=600,y=70) l1=Label(app, text='EMPLOYEE REGISTRATION' , font=("verdana",20,"bold"),bg= "lightgreen",fg="black",width= 23) l1.place(x=500,y=20) l2=Label(app,text="Employee ID",fg="black",bg="white", font=("verdana",15,"bold"), anchor="w") l2.place(x=200,y=100) e2=Entry(app,font=("verdana", 15,"bold"),width="20",fg=" tomato") e2.place(x=150,y=150) l3=Label(app,text="Employee Name",fg="black",bg="white", font=("verdana"...

PYTHON PROJECT1

  from tkinter import * app=Tk() h=app.winfo_screenheight() w=app.winfo_screenwidth() app.configure(height=h,width= w,bg="lightgreen") app.title("Employee Registration") frm = Frame(app,height="565",width=" 450",bg="violet") frm.place(x=60,y=65) frm = Frame(app,height="145",width=" 400",bg="violet") frm.place(x=600,y=70) l1=Label(app, text='EMPLOYEE REGISTRATION' , font=("verdana",20,"bold"),bg= "lightgreen",fg="black",width= 23) l1.place(x=500,y=20) l2=Label(app,text="Employee ID",fg="black",bg="white", font=("verdana",15,"bold"), anchor="w") l2.place(x=200,y=100) e2=Entry(app,font=("verdana", 15,"bold"),width="20",fg=" tomato") e2.place(x=150,y=150) l3=Label(app,text="Employee Name",fg="black",bg="white", font=("verdana"...

PYTHON PROJECT

 from tkinter import * app=Tk() h=app.winfo_screenheight() w=app.winfo_screenwidth() app.configure(height=h,width=w,bg="green") app.title("Employee Registration") l1=Label(app, text='EMPLOYEE REGISTRATION' , font=("verdana",20,"bold"),bg="white",fg="black",width=23) l1.place(x=580,y=20) l2=Label(app,text="Employee ID",fg="black",bg="white",font=("verdana",15,"bold"),anchor="w") l2.place(x=200,y=100) e2=Entry(app,font=("verdana",15,"bold"),width="20",fg="tomato") e2.place(x=150,y=150) l3=Label(app,text="Employee Name",fg="black",bg="white",font=("verdana",15,"bold"),anchor="w") l3.place(x=200,y=200) e3=Entry(app,font=("verdana",15,"bold"),width="20",fg="tomato") e3.place(x=150,y=250) l4=Label(app,text="Employee Age...