Python Forum
[Tkinter] output "os" in frame
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] output "os" in frame
#2
Note that you have to have read permission on fstab (Code not tested so post back if there are errors that you can not fix) Pmw has a ScrolledFrame if you want to install it https://pypi.org/project/Pmw/
def fstab():
    records=open("/etc/fstab", "r").readlines()

    listbox = Listbox(mywin, height=6, width=20, font=('Fixed', 14),
                      foreground='blue' )
    scrolly = Scrollbar(mywin, command=listbox.yview )
    listbox.configure(yscrollcommand=scrolly.set)

    for item in records:
        listbox.insert("end", item)
    scrolly.pack(side="right", fill="y")
Reply


Messages In This Thread
output "os" in frame - by m_clayton - May-25-2018, 03:52 PM
RE: output "os" in frame - by woooee - May-25-2018, 07:57 PM
RE: output "os" in frame - by m_clayton - May-26-2018, 10:12 PM
RE: output "os" in frame - by woooee - May-27-2018, 04:06 AM
RE: output "os" in frame - by m_clayton - May-27-2018, 08:51 PM
RE: output "os" in frame - by m_clayton - May-28-2018, 02:49 PM
RE: output "os" in frame - by m_clayton - May-29-2018, 12:14 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Scrollbar, Frame and size of Frame Maksim 2 9,276 Sep-30-2019, 07:30 AM
Last Post: Maksim
  [Tkinter] create and insert a new frame on top of another frame atlass218 4 11,513 Apr-18-2019, 05:36 PM
Last Post: atlass218
  [Tkinter] Frame size only works if frame is empty(Solved) Tuck12173 7 6,708 Jan-29-2018, 10:44 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020