hi,
i am have doubt with win forms. how create the splash window that will show for slow processing activity like "please wait ... " . ive attached the sample screen here.
how to create this with winforms
v.r.mahendran
Printable View
hi,
i am have doubt with win forms. how create the splash window that will show for slow processing activity like "please wait ... " . ive attached the sample screen here.
how to create this with winforms
v.r.mahendran
Set the .BorderStyle to Fixed Single, delete the .Text (caption), set .ControlBox to False, and use .Opacity to achieve the alpha blending.
Quote:
Originally Posted by penagate
yes as you told i did every thing. but what i need is it should be synchronous with the process na. ex: if im opening a very larg file or some delayed process, i want to display based on the speed of the task. i m getting any idea. can you help me. and im new for winforms programming.
Ahhh. Well that isn't really anything to do with WinForms ;)
You need to time which operations take longest and then display the notice only for them.
Do you need to be able to determine whether an operation is taking a long time, at run time?
BTW, there's no need to start two of the same thread. jmcilhinney answered your other thread with a couple of potential solutions.