vote up 0 vote down star

I am using the built in functionality to define a splash screen using vb.net in VS2008. In Me.Startup, I'm calling a function which does a DB version check, then updates if required. This function then writes to a label, using an invoke if required to write the status. Everything functions fine, all the DB updates complete, but the splash screen just never disappears afterwards. It's there while the updates are running, and when the last code has executed, the main form appears as expected, but the splash screen is still in the background. When I close the main form, the splash screen keeps running. I've tried adding code to manually close the splash screen form when the code has run, but to no effect. Thoughts?

flag

2 Answers

vote up 1 vote down check

If you are doing initialization/update actions on application start, I would suggest not using the built in splash screen.

Why don't you create a Main() module to start up your application, display the splash screen, do the DB check, hide the splash screen, and then load the main form.

link|flag
I am using getdotnetcode.com/GdncStore/free/… to walk me through it, as I've never written my own Main() routine before. – mattdwen Feb 15 at 22:56
vote up 0 vote down

Hmm, what exactly are you invoking to? The main form hasn't been created yet by the time Me.Startup() runs. Why invoke at all? The point of a splash screen is that you can take your merry time in the UI thread. Last but not least, you can burn cycles in the main form's Load event.

link|flag
The invoke is on the status label inside the splash screen, e.g. If lblStatus.InvokeRequried, to cover for any cross thread calls, as I understand it. – mattdwen Feb 15 at 22:48
Sorry, I'm being slack, on both counts. I'm calling a DBUpdate class from inside the splash screen, and then writing updates back to the instance of the splash from the update class. – mattdwen Feb 15 at 23:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.