Comment le code vba pour ouvrir internet explorer en nouvelle session?

J'ai du mal à le faire depuis des mois, comment code VBA pour ouvrir internet explorer en nouvelle session j'ai une application avec de nombreuses connexions-je besoin pour ouvrir simultanément à l'aide de l'automation , j'ai utilisé

  set ie=new InternetExplorer  

mais il ouvre l'ie au sein de l'ancienne session, je veux ouvrir une nouvelle session pour chaque login s'il vous plaît aidez moi, j'ai googlé beaucoup pour elle, mais a terminé avec n'importe quelle solution.
c'est mon code

 Function GetIE() As InternetExplorer

  Dim WScript
Dim objShellWindows

 Set objShell = CreateObject("Shell.Application")
 Set objShellWindows = objShell.Windows
 Set WScript = CreateObject("WScript.Shell")


 Dim ieStarted
 ieStarted = False

  Dim ieError
  ieError = False

    Dim seconds
      seconds = 0

  While (Not ieStarted) And (Not ieError) And (seconds < 30)

If (Not objShellWindows Is Nothing) Then
    Dim objIE As InternetExplorer
    Dim IE


    For Each objIE In objShellWindows

        If (Not objIE Is Nothing) Then

            If IsObject(objIE.Document) Then
                Set IE = objIE.Document

                If VarType(IE) = 8 Then

                    If IE.Title = EmptyTitle Then
                        If Err.Number = 0 Then
                            IE.Write LoadingMessage

                            objIE.navigate Sheet1.Login.Text
                        ieStarted = True
                        Set GetIE = objIE


                      Else

                       MsgBox ErrorMessage
                            Err.Clear
                            ieError = True

                            Exit For
                        End If
                    End If
                End If
            End If
        End If

        Set IE = Nothing
        Set objIE = Nothing
    Next
End If

Application.Wait Now + TimeValue("00:00:1")
seconds = seconds + 1
Wend

 Set objShellWindows = Nothing
 Set objShell = Nothing



   End Function

avec ce code im en mesure d'ouvrir le navigateur, mais malheureusement, ma page web est l'ouverture à des perspectives, ce qui est déjà ouvert pls aider

OriginalL'auteur nothingisimpossible | 2013-01-06