From dmandini@inet.hr Sat Jan 30 02:20:15 2027 From: dmandini@inet.hr (djuro m.) Date: Fri, 29 Jan 2027 21:20:15 -0500 Subject: [Tutor] Glade Message-ID: <27012922025100.00939@localhost.localdomain> Hello everyone! Could someone please "explain" to me how to make a simple gui working with python code by using Glade. ( I only need to see a code or how is python code tied with gui code file) I already tried several times according to instructions in available "Getting started-s" but it didn't work. I use RedHat 7.0, Python 1.5.2 and Glade 0.5.9 For example by Tkinter: from Tkinter import * top = Tk() e = Entry() e.pack() def Write(): global e m = "Hi there!" e.insert(END,m) b = Button(text='OK',command = Write) b.pack() top.mainloop() Thank you D. M.