Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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);
like image 615
Shamim Avatar asked Dec 13 '22 04:12

Shamim


1 Answers

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.

like image 95
Rom Avatar answered Dec 16 '22 18:12

Rom