XP like ProcessBar

  • Thread starter Thread starter Kim
  • Start date Start date
K

Kim

Hi all
I want to make a processBar like the processbar then XP start up, without
any mesument just indicakiten the process working. I can use a ordinar
ProcessBar system vith max, min and value input. I have try to google a
solution but can find any hint how to do it.

Best Regard
Kim s.
 
marquee mode?

Application.EnableVisualStyles();
using (Form f = new Form())
using (ProgressBar pb = new ProgressBar()) {
pb.Style = ProgressBarStyle.Marquee;
f.Controls.Add(pb);
Application.Run(f);
}

Marc
 
random aside; you've got to love the frugality of C# 3 (see below) for
these snippet examples... I only wish that we could rely on everybody
having Orcas...

Application.EnableVisualStyles();
Application.Run(new Form {
Controls = {new ProgressBar {Style =
ProgressBarStyle.Marquee}}
});

Marc
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top