Shamim
Shamim

Reputation: 383

How to set Progress bar on Message Box

I want to set progress bar on my message box how to set ...progress bar property style have Marquee property..... Message box code is bellow.......

  MessageBox.Show("Data process please wait .", "Data progress ", MessageBoxIcon.Information);

Upvotes: 4

Views: 22204

Answers (1)

Rom
Rom

Reputation: 4199

There is no way to do that using MessageBox. You need to implement your own Form which would look like a MessageBox, but contain a progress bar and/or anything else which you want to see there.

Upvotes: 13

Related Questions