On 12.04.06 17:40:36, David J Brooks wrote: > Tkinter.Frames defines its after method thusly: > > after(self, ms, func=None, *args) unbound Tkinter.Frame method > Call function once after given time. > > MS specifies the time in milliseconds. FUNC gives the > function which shall be called. Additional parameters > are given as parameters to the function call. Return > identifier to cancel scheduling with after_cancel. > > Does Qt have something that works more or less the same way?
Please don't hijack other peoples threads. And yes Qt does have something like that, it's calles QTimer. With a single-shot-timer you can have a slot executed after a specific amount of time, however you cannot pass arguments to that slot. See Qt documentation for more information. Andreas -- It may or may not be worthwhile, but it still has to be done. _______________________________________________ PyKDE mailing list [email protected] http://mats.imk.fraunhofer.de/mailman/listinfo/pykde
