Dunque, ho creato una splash form con un evento timer e alla fine del conteggio del timer
dovrei aprire un'altra Form ma invece l'applicazione si chiude.
Posto il codice per capire meglio, grazie anticipatamente per gli aiuti.
codice:
    Private Sub Timer1_Tick(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles Timer1.Tick
        Static X As Short
        X = (X + 1) Mod 100
        Label3.Text = "Caricamento applicazione in corso..." & X & "%"
        prgb1.Value = X
        Cursor = System.Windows.Forms.Cursors.WaitCursor
        If prgb1.Value = 99 Then
            Timer1.Enabled = False
            Me.Cursor = Cursors.Default
            Prgb1.Value = 1
            FrmMain.Show()
            Me.Close()
        End If
    End Sub