On Wednesday 22 January 2003 4:55 pm, Tuvi, Selim wrote: > Hi, I am developing an application that has a QScrollView widget in it. The > QScrollView widget has a QVBox in which I add more widgets. When I > initially add the widgets before the "exec_loop" starts I can see what I > added on the screen. But if I add them through a button click event then > the widgets do not get added (or they get added but I can not see them).
Widgets are hidden when they are first created so those that are created after the w.show() must be shown explicitly. Add l.show() after creating the QLabel. Phil _______________________________________________ PyKDE mailing list [EMAIL PROTECTED] http://mats.gmd.de/mailman/listinfo/pykde
