PYTHON PROJECT2
from tkinter import *
app=Tk()
h=app.winfo_screenheight()
w=app.winfo_screenwidth()
app.configure(height=h,width=
app.title("Employee Registration")
frm = Frame(app,height="565",width="
frm.place(x=60,y=65)
frm = Frame(app,height="145",width="
frm.place(x=600,y=70)
l1=Label(app, text='EMPLOYEE REGISTRATION' , font=("verdana",20,"bold"),bg=
l1.place(x=500,y=20)
l2=Label(app,text="Employee ID",fg="black",bg="white",
l2.place(x=200,y=100)
e2=Entry(app,font=("verdana",
e2.place(x=150,y=150)
l3=Label(app,text="Employee Name",fg="black",bg="white",
l3.place(x=200,y=200)
e3=Entry(app,font=("verdana",
e3.place(x=150,y=250)
l4=Label(app,text="Employee Age",fg="black",bg="white",
l4.place(x=200,y=300)
e4=Entry(app,font=("verdana",
e4.place(x=150,y=350)
l5=Label(app,text="Employee Designation",fg="black",bg="
l5.place(x=180,y=400)
e5=Entry(app,font=("verdana",
e5.place(x=150,y=450)
l6=Label(app,text="Employee Place",fg="black",bg="white",
l6.place(x=200,y=500)
e6=Entry(app,font=("verdana",
e6.place(x=150,y=550)
#valueincluded in the given
l7=Label(app,text="ENTER ID",fg="black",bg="white",
l7.place(x=720,y=100)
e7=Entry(app,font=("verdana",
e7.place(x=650,y=150)
but=Button(app,text="CREATE",
but.place(x=720,y=300)
but=Button(app,text="READ",
but.place(x=720,y=400)
but=Button(app,text="UPDATE",
but.place(x=720,y=500)
but=Button(app,text="DELETE",
but.place(x=720,y=600)
Comments
Post a Comment