hi all, i'm creating a htmlfile like this:
Dim m_doc As MSHTML.HTMLDocument
Set obj = CreateObject("htmlfile")
obj.Open
obj.Write m_htm
Set m_doc = obj
the variable m_htm contains plain html data. my problem: the created htmldocument will have local paths for links/includes. how can i set the document's baseUrl?
thx