Results 1 to 8 of 8

Thread: Splash Screen [RESOLVED]

Threaded View

  1. #1

    Thread Starter
    Fanatic Member cpatzer's Avatar
    Join Date
    Sep 2004
    Posts
    537

    Resolved Splash Screen [RESOLVED]

    Hello,

    I am trying to build a splash screen for my application. So far I have in my Startup sub:

    Code:
                MyThread = New Threading.Thread(AddressOf ShowSplashScreen)
                MyThread.Name = "Splash Screen"
                MyThread.Start()
    And the sub:

    Code:
        Public Sub ShowSplashScreen()
            Splash = New SplashForm
            Splash.Show()
            'Only when I put MessageBox.Show("Hello") does this form show
        End Sub
    And in the main form load event:

    Code:
    Splash.Close()
    Why is it that the splash form only shows when I show a message box?
    Can anybody tell me what I am doing wrong?
    Last edited by cpatzer; Apr 20th, 2005 at 12:48 PM.
    In life you can be sure of only two things... death and taxes. I'll take death.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width