T
Thilo Kerner
Hello!
In VB6 I used to do all preparation in my Sub Main which Microsoft wants
me to abandon. I guess they have a good reason (but which?), so I would
like to go with it.
Can you please tell me when you do your preparation, e. g. checking for
corrupt database, establish database connection, check for license,
build GUI?
Do you all use a start/ splash screen if your application is a bit larger?
Do you program like this (Tarzan style)? ->
(My start form is frmSplash)
(Now in frmSplash...)
sub Timer1_Timer()
call PrepareAllStuff
If m_bLicensed then
frm1.show
else
frm2.show
end if
unload me
end sub
I described it a bit weird, sorry, but I hope you understand what I mean.
Thank you!
Thilo.
In VB6 I used to do all preparation in my Sub Main which Microsoft wants
me to abandon. I guess they have a good reason (but which?), so I would
like to go with it.
Can you please tell me when you do your preparation, e. g. checking for
corrupt database, establish database connection, check for license,
build GUI?
Do you all use a start/ splash screen if your application is a bit larger?
Do you program like this (Tarzan style)? ->
(My start form is frmSplash)
(Now in frmSplash...)
sub Timer1_Timer()
call PrepareAllStuff
If m_bLicensed then
frm1.show
else
frm2.show
end if
unload me
end sub
I described it a bit weird, sorry, but I hope you understand what I mean.
Thank you!
Thilo.