c# - How do I show status in a progress bar on my winform? -
while transferring info 1 table another, want progress bar show status on form. tried ways it's not working.
if (datagridview1.rowcount - 1 == no_of_rows) { progressbar1.value = 100; datagridview1.visible = true; } else { progressbar1.value = 50; datagridview1.visible = false; }
use progress bar window control
for references : http://www.codeproject.com/articles/449594/progress-bars-threads-windows-forms-and-you
c# winforms c#-4.0 progress-bar
No comments:
Post a Comment