I want to show some form with animated gif on it (Form1) while some data are
processed in background in application. I use
dim x as new Form1
x.show
for I=0 to 1000000
processing data
next I
x.close
This take about five minutes but form1 is not shown just rectangle without
picture. Do I have to refresh form ore something like that?
thx
processed in background in application. I use
dim x as new Form1
x.show
for I=0 to 1000000
processing data
next I
x.close
This take about five minutes but form1 is not shown just rectangle without
picture. Do I have to refresh form ore something like that?
thx
Comment