Hi,
Currently i am working an application program with Visual Basic.6 and
I want to add Splash screen on it. Would you come up with the code used to manage it,please ?
hi
create a splash screen
then call your project as usual
-
frmMain.Show
-
frmMain.Refresh
-
frmSplash.Show 0
-
frmSplash.Refresh
-
Start = Timer
-
'--- have some code running on the background if you like
-
while Timer<Start+3: Wend
-
'--- in this case 3 seconds delay from start showing the splash to here
-
frmSplash.Hide
-
'-- continue your code
-
you can add some code in Form_Load of your splashscreen