my program draws a form and when you click the start button another form is
drawn with a progress bar as it runs through a function. my issue is that
when you click on another progrem then try to go back to the progress bar
form it doesn't redraw itself. i tried using a:
if(num%100==0)
this.Update();
where num is just to count each time it runs through the loop. the program
still works and finishes, but i can't seem to get the progress bar form to
redraw itself. the this.Refresh() and Update() did not work either. any
suggestions?
btw...it's for an installer, so as it's uploading the database the progress
bar goes, all of it works fine, just need the form to redraw itself if it
loses focus.
?zden Irmak - 27 Dec 2004 17:02 GMT
try Application.DoEvents();
?zden
> my program draws a form and when you click the start button another form
> is
[quoted text clipped - 15 lines]
> bar goes, all of it works fine, just need the form to redraw itself if it
> loses focus.
oscar - 27 Dec 2004 17:45 GMT
that work perfect, thanx
"Özden Irmak" wrote:
> try Application.DoEvents();
>
[quoted text clipped - 19 lines]
> > bar goes, all of it works fine, just need the form to redraw itself if it
> > loses focus.