MCPcopy
hub / github.com/geekcomputers/Python / search_acc

Function search_acc

bank_managment_system/frontend.py:100–116  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

98
99
100def search_acc():
101 frame1.grid_forget()
102 global search_frame
103 search_frame = Frame(tk)
104 search_frame.grid(padx=500, pady=300)
105
106 label = Label(search_frame, text="Enter account number", font="bold")
107 label.grid(row=0, pady=6)
108
109 global entry11
110 entry11 = Entry(search_frame)
111 entry11.grid(row=1, pady=6)
112
113 button = Button(search_frame, text="Search", command=show)
114 button.grid(row=3)
115
116 mainloop()
117
118
119def show():

Callers 4

addFunction · 0.85
withdrawFunction · 0.85
checkFunction · 0.85
deleteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected