Sample code for 30+ languages & platforms
Visual FoxPro

Example to Download Web Page as MHT Archive

See more MHT / HTML Email Examples

Demonstrates how to download a web page into a .mht web archive.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loMht

lnSuccess = 0

* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.

loMht = CreateObject('Chilkat.Mht')

lnSuccess = loMht.GetAndSaveMHT("http://www.piscatur.com/","qa_data/mht/piscatur.mht")
IF (lnSuccess = 0) THEN
    ? loMht.LastErrorText
    RELEASE loMht
    CANCEL
ELSE
    ? "MHT Created!"
ENDIF

RELEASE loMht