Yaz  Font K   lt Yaz  Font B y lt

Entry e Girilen Icerigi Text Dosyasina Kaydetmek

 

Merhaba arkadaslar bu makalemizde Entry e girilen metini text dosyasina kaydediyoruz. 

 

Resim1

Sekil 1

Resim2

Sekil 2

Resim3

Sekil 3

Resim4

Sekil 4

from tkinter import *

from tkinter import messagebox as MessageBox

 

# Create an instance of tkinter rootdow

# tkinter ornegi olusturuyoruz

 

root = Tk()

root.title("save the contents of a textbox ..bs")

root.geometry("450x400")

 

def open_text():

   openFile = open("D:\person.txt""r")

   content = openFile.read()

   tBox.insert(END, content)

   openFile.close()

 

def save_text():

   openFile = open("D:\person.txt""w")

   openFile.write(tBox.get(1.0, END))

   openFile.close()

   MessageBox.showinfo("Information","Record saved successfully " + "\n" + "Kayit basarili bir sekilde kaydedildi")

 

# Creating a text box widget

# Text box olusturuyoruz

 

tBox = Text(root, width=50,height=15)

tBox.pack(padx=1,pady=1)

 

openBtn = Button(root, text="Open Text File", command=open_text, width=20,height=2,bg="deepskyblue",fg="white")

openBtn.pack(padx=50,pady=10)

 

# Create a button to save the text

# Metini kaydetmek icin buton olusturuyoruz

 

saveBtn = Button(root, text="Save File", command=save_text, width=20,height=2,bg="fuchsia",fg="white")

saveBtn.pack(padx=50,pady=10)

 

root.mainloop()

 

Bir makalenin daha sonuna geldik. Bir sonraki makalede gorusmek uzere. Bahadir SAHIN