[Gtk-sharp-list] ProgressBar
Todd Berman
tberman@off.net
Wed, 11 Aug 2004 13:43:46 -0400
On Wed, 2004-11-08 at 13:26 +0000, underdog10@netcourrier.com wrote:
> Thanks it is working now.
>
> But the timeout still up when i kill my dialog process.
> I use
>
> Gtk.Timeout.Add((uint)(1000), new Gtk.Function(UpdateProgressBarTimeOut));
>
> and
>
> Gtk.Timeout.Remove((uint)(1000));
Next time read the docs.
Gtk.Timeout.Remove takes the ID of a timeout to remove. that ID is
returned by Gtk.Timeout.Add.
--Todd