Flickering effect
-
Hi all, i have some user controls on the form which fetch data from webservice and display them. the problem is when the form loads it flickers for some time and then all the control are displayed. Is there any standard solution for this.
Thanks & Regards, Pramod "Everyone is a genius at least once a year"
-
Hi all, i have some user controls on the form which fetch data from webservice and display them. the problem is when the form loads it flickers for some time and then all the control are displayed. Is there any standard solution for this.
Thanks & Regards, Pramod "Everyone is a genius at least once a year"
Disable control painting until you fetch data from ws
Visit my blog at http://dotnetforeveryone.blogspot.com
-
Disable control painting until you fetch data from ws
Visit my blog at http://dotnetforeveryone.blogspot.com
If you do this you will get an ugly effect if you drag another window over your form. I think it would be better to try double buffering, or making the control threaded so that it will be able to repaint itself while loading data.