Entry e Girilen Icerigi Text Dosyasina Kaydetmek

 

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


 



 

 

 

 

 

 

 

 

 

 

 

Sekil 1


 



 

 

 

 

 

 

 

 

 

 

 

 

Sekil 2

 



 

 

 

 

 

 

Sekil 3

 



 

 

 

 

 

 

 

 

 

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

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...