Does anyone know how to load up a HTMLDocument from a .htm page located on the local system and not a web server???

I am not using axwebbrowser as i do not require a UI.

If anyone can advise it would be good.

VB Code:
  1. Dim objMSHTML As New mshtml.HTMLDocument
  2.                 Dim objDoc As New mshtml.HTMLDocument
  3.                 Dim objLink As mshtml.HTMLLinkElement
  4.                 Dim strOfLinks As String
  5.  
  6.                 objDoc = objMSHTML.createDocumentFromUrl(mLocation, vbNullString)
  7.  
  8.                 While objDoc.readyState <> "complete"
  9.                     Application.DoEvents()
  10.                 End While
  11.  
  12.                 For Each objLink In objDoc.links
  13.                     strOfLinks = strOfLinks & objLink.toString
  14.                 Next