Page 1 of 1
Use SplashScreen as a data loader
Posted: Sun Aug 12, 2012 3:47 am
by XTechVB
how can i change a form's properties like text,color,image etc, via a BackgroundWorker in a SplashScreen?
this thing is giving me a headache, so if anyone can solve this problem I'll give you 200 cc and +rep
Re: Use SplashScreen as a data loader
Posted: Sun Aug 12, 2012 4:42 am
by CodenBoy
I've thinking of this for my apps, and i think that if you make a splashscreen then add this code to the splashscreen form load.
and add 1 timer
(interval 1000) and a hidden label,
label text = 0
Code: Select allForm1.show()
form1.visibile = false
timer1.start()
the timer code,
Code: Select allif label1.text = 5 then 'change this to how many seconds the splashscreen will be visible
form1.visible = true
me.hide 'use splashscreen.close in form1 load.
else
label1.text += 1
End if
Now this will not use anything really, just simple but it may do it, if you know how many seconds its gonna take to load, then just use this code, but if ur apps uses much ram and memory or whatever then idk :( sorry hehaho;
*atleast tried to help
Re: Use SplashScreen as a data loader
Posted: Sun Aug 12, 2012 1:15 pm
by M1z23R
Here is something i made quick, it is easy to understan. Hope it helps...