Use SUB_MAIN in a module to load your app (you will also have to specify this in your project properties -- SUB_MAIN as 'Startup Object')

Sub_Main()

frmSplash.Show
doevents

'do other loadup stuff here

frmSplash.hide
frmMain.show
unload frmsplash

HTH

Tom