Hello,
i'm attempting to create a splash screen using the code snippet posted on this site(i.e. DaniWeb) - http://http://www.daniweb.com/code/snippet697.html
However, I'm having some difficulty. It appears that the splash screen will continue to run w/out disposing itself. That is, the screen hangs and does not go away. Also, the screen is flickering although the Update() method has been overriden.
I'm instantiating the splash object in the Main method of the application. Here's a snippet:
Splash oSplash = new Splash();
oSplash.main(args);
any help is appeciated.