Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
Save Web Page as .mht Web ArchiveDownloads a web page into a .mht web archive.
#include <C_CkMht.h> void ChilkatSample(void) { HCkMht mht; BOOL success; mht = CkMht_Create(); success = CkMht_UnlockComponent(mht,"30-day trial"); if (success != TRUE) { printf("Mht component unlock failed\n"); return; } success = CkMht_GetAndSaveMHT(mht,"http://www.bonairefishing.com/","bonairefishing.mht"); if (success != TRUE) { printf("%s\n",CkMht_lastErrorText(mht)); return; } else { printf("MHT Created!\n"); } CkMht_Dispose(mht); } |
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2008 Chilkat Software, Inc. All Rights Reserved.