[Gtk-sharp-list] ProgressBar

Torsten Luettgert t.luettgert@pressestimmen.de
Wed, 11 Aug 2004 12:57:19 +0200


On Mit, 2004-08-11 at 14:37, underdog10@netcourrier.com wrote:
> Hello!
> 
> i made a test of how to use a ProgressBar.
> I use a timeout which update the ProgressBar.
> It works.
> 
> But in my application, I have a big process that take a lot of time.
> I know exactly how much task i need to do.
> But i just can't update the gui during the process.
> 
> Do you have clue or idea to help me.

You can process GUI events manually by doing

   while( Application.EventsPending() )
      Application.RunIteration();

Greetings,
Torsten