Reputation: 383
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
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