Hi, Iam creating tab pages using pmw nb = Pmw.NoteBook(master) p1 = nb.add('Page 1') p2 = nb.add('Page 2') p3 = nb.add('Page 3')
created button control for every tabe page to open HTML Button(p1, fg='blue',command=f.call,command=call1).pack(pady=40) Button(p2, fg='blue',command=f.call,command=call2).pack(pady=40) Button(p3, fg='blue',command=f.call,command=call2).pack since HTML rendering supported in WxPython library .I have defined call backs with WxPython HTML routines eg. def call1:() { html.LoadPage("http://wxwidgets.org/manuals/2.5.4/wx_wxbutton.html") } Iam facing problem in integration of both the libraries. Is it possible to integrate the functionalities of libraries WxPython and pmw.? please help me. thanks iS IT
-- http://mail.python.org/mailman/listinfo/python-list