I'm taking off for the day but if the VBA function doesn't work, AND the vbs script does work just fine already, you can call the vbs script from your Access VBA function like this
Public Function LuanchWebEmailer()
'Dim xmlhttp As Object
'Set xmlhttp = CreateObject("Microsoft.XM
LHTTP")
'xmlhttp.Open "GET", "
http://governor.mt.gov/default.asp"
, False
'xmlhttp.Send
'Set xmlhttp = Nothing
Dim varReturn
varReturn = Shell("WScript.exe " & Chr(34) & "C:\MyFolder\SubFolder\The
NameOfTheS
cript.vbs"
& Chr(34))
End Function
Talk to you tomorrow.
OM Gang