Quote Originally Posted by UrlGuy
For my program, if I would want to display a form, picture or something before the main app loaded how would I do that? Im pretty sure it has something to do with the timer icon but I'm not sure how to use that, hope anyone can help a newb

Heres the idea:

Create a form (Say for an example frmSplash).

Add whatever you like to that and add a Timer to that with an interval of 10000 (10 Seconds).

In the Timer1_Timer Event put something like this:

VB Code:
  1. Private Sub Timer1_Timer()
  2.     ' Show the next form...
  3.     frmFormNameHere.Show (vbNormal)
  4.     ' Unload this form...
  5.     Unload Me
  6. End Sub

Or, something like that

Cheers,

Ryanj