TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Dhruti Prajapati
NA
7
2.2k
Progressbar in c# windows form application
Nov 20 2016 11:24 PM
On button click event of the form New form will open.
like below.
private void metroButton2_Click_1(object sender, EventArgs e)
{
Resultone rs = new Resultone();
this.Hide();
rs.Show();
}
And Resultone form is like below.
public partial class Resultone : MetroForm
{
public Resultone()
{
InitializeComponent();
GenerateFile();
ShowContent();
outputfile();
}
....
}
This functions takes some time around 8 seconds to complete the job.
So I want to show progressbar until this processes are finished.
Reply
Answers (
2
)
Arrange checkboxlist in windows application
insert update delete using radion button