I found this in another forum, which is what I want. However I want to open multiple websites each either in a seperate window or separte tab (Netscape).
I am sure that it can be sone with what is here with some additions, I just don't understand enough about what is here to be able to make it work.
Option Explicit
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
(ByVal hwnd As Long, ByVal lpOperation As String, _
ByVal lpFile As String, ByVal lpParameters As String, _
ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Sub CMDButton_Click ()
ShellExecute Me.hwnd, "Open", "
vbNullString, App.Path, vbNormalFocus
End Sub