Ejemplo n.º 1
0
def insert_command():
    BackEnd.insert(name.get(), movie_title.get(), time.get(), phone_no.get(),
                   address.get())
    list1.delete(0, END)
    list1.insert(END,
                 (name.get(), movie_title.get(), time.get(), phone_no.get(),
                  address.get()))
Ejemplo n.º 2
0
def addEntry():
    BackEnd.insert(title_text.get(), author_text.get(), year_text.get(),
                   isbn_text.get())
    print(title_text.get(), author_text.get(), year_text.get(),
          isbn_text.get())
    clearEntry()
    viewAll()
Ejemplo n.º 3
0
def add_command():
    BackEnd.insert(title_text.get(), Author_text.get(), Year_text.get(),
                   ISBN_text.get())
    list1.delete(0, END)
    list1.insert(END, (title_text.get(), Author_text.get(), Year_text.get(),
                       ISBN_text.get()))
Ejemplo n.º 4
0
def add_command():
    BackEnd.insert(title_text.get(), year_text.get(), company_entry.get())
    list_display.delete(0, END)
    list_display.insert(
        END, (title_text.get(), year_text.get(), company_text.get()))
Ejemplo n.º 5
0
def add_command():
    BackEnd.insert(title_text.get(), author_text.get(), year_text.get(),
                   isbn_text.get())
    list1.delete(0, END)
    list1.insert(END, (title_text.get(), author_text.get(), year_text.get(),
                       isbn_text.get()))