Click to See Complete Forum and Search --> : Creating MHTML files from web address?


Jay King
02-13-2003, 09:38 PM
any dll's tools?

Phil Weber
02-14-2003, 02:12 AM
Jay: Have you tried searching Google? I did, and found this in about two
minutes:
http://msdn.microsoft.com/library/en-us/cdosys/html/_cdosys_cdo_support_for_mhtml.asp
--
Phil Weber

Jay King
02-14-2003, 11:27 AM
I found that as well but have no idea how to utilize it. I'll start playnig
around with it today.
"Phil Weber" <philweber@hotmail.com> wrote in message
news:3e4c938d$1@tnews.web.devx.com...
| Jay: Have you tried searching Google? I did, and found this in about two
| minutes:
|
http://msdn.microsoft.com/library/en-us/cdosys/html/_cdosys_cdo_support_for_
mhtml.asp
| --
| Phil Weber
|

Jay King
02-14-2003, 11:54 AM
I have this so far using the access 2000 reference
now how do I save the MHTML to a file or get the MHTML in memory?


Private Sub cmdSend_Click()
Dim iMsg As CDO.Message
Dim iConf As CDO.Configuration


Set iMsg = New CDO.Message
Set iConf = New CDO.Configuration




With iMsg
Set .Configuration = iConf
Debug.Print "Creating body!"
.CreateMHTMLBody "http://www.aol.com"
.To = "myEmail"
.From = "myEmail"
.Subject = "Foo2: Test of encoding"
Debug.Print "Sent!"
' iMsg.

End With

End Sub

Jay King
02-17-2003, 10:22 PM
I need a way to get the MHTML code though, I dont want to mail it but save
it to a file.
"Phil Weber" <philweber@hotmail.com> wrote in message
news:3e4c938d$1@tnews.web.devx.com...
| Jay: Have you tried searching Google? I did, and found this in about two
| minutes:
|
http://msdn.microsoft.com/library/en-us/cdosys/html/_cdosys_cdo_support_for_
mhtml.asp
| --
| Phil Weber
|

Phil Weber
02-17-2003, 11:41 PM
> I need a way to get the MHTML code though, I don't
> want to mail it but save it to a file.

Jay:

http://www.google.com/search?q=vb+save+web+archive+mht
http://groups.google.com/search?q=vb+save+web+archive+mht

If you can't find the answer there, it likely doesn't exist.
--
Phil Weber