Click here to Skip to main content
15,918,031 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to create a from where I have a button like "Start" after click start the progress bar will come, then after some time I want to show some text result as a output.
C#

Posted

Assuming it is for Wins form, learn the individual parts, then put them together:
1. Progress bar[^]
2. ButButton[^]ton
3. Message box[^]
 
Share this answer
 
1. Create a WinFrom/WPF window with start button.
2. OnClick of Start button create another window with progress bar called progress window using progresswindow.ShowDialog().
3. start operation on the load of ProgressWindow and update progress value of progress bar.
4. once completed close the progresswindow and show messageBox with desired message.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900