Results 1 to 2 of 2

Thread: Splash Screen

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2000
    Posts
    8
    I have a lengthy startup procedure that loads data from a database. I'm trying to display a splash screen while it gets the data. I'm using the following:

    Sub Main()
    frmSplash.Show
    'Get data from database.
    .............
    'Show main form.
    frmMain.show
    Unload frmSplash
    End Sub

    The problem is that only an outline of the splash screen ever shows. It shows this outline until it gets the data and then displays the main form. How do I get the splash screen to completely show while the data is being retrieved? Thanks for any help.

  2. #2
    Lively Member
    Join Date
    Aug 1999
    Location
    Blackpool, England
    Posts
    87
    Try putting some DoEvents() into the code before you begin the database work to give the PC time to display the splash screen, also you could try a refresh beforehand.

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