Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Printing HTML pages

Printing HTML pages

Scheduled Pinned Locked Moved C / C++ / MFC
htmltutorialquestion
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jancsi
    wrote on last edited by
    #1

    Hello Does anyone know how to print HTML files from a console application? I wanna print the files like the I Explorer shows them not the source code . I think a solution could be using IWebBwoser control but i don't know how to embed it to a console application Thanks a lot xxx

    R 1 Reply Last reply
    0
    • J jancsi

      Hello Does anyone know how to print HTML files from a console application? I wanna print the files like the I Explorer shows them not the source code . I think a solution could be using IWebBwoser control but i don't know how to embed it to a console application Thanks a lot xxx

      R Offline
      R Offline
      Ravi Bhavnani
      wrote on last edited by
      #2

      You could write a simple web resource provider[^] to download the page to disk, then just print the file by doing:

      // Print file
      CString strPrintFile = "MyFile.htm";
      SHELLEXECUTEINFO seInfo;
      ::ZeroMemory (&seInfo, sizeof (seInfo));
      seInfo.cbSize = sizeof (seInfo);
      seInfo.fMask = SEE_MASK_FLAG_DDEWAIT;
      seInfo.hwnd = GetSafeHwnd();
      seInfo.lpVerb = "print";
      seInfo.lpFile = strPrintFile.GetBuffer(0);
      seInfo.lpDirectory = "";
      seInfo.nShow = SW_SHOWNORMAL;
      BOOL bStatus = ::ShellExecuteEx (&seInfo);
      strPrintFile.ReleaseBuffer();

      // Warn user on error
      if (!bStatus) {
      CString strMessage;
      strMessage.Format (IDS_CantPrintFile, strPrintFile.GetBuffer(0));
      strPrintFile.ReleaseBuffer();
      AfxMessageBox (strMessage);
      }

      /ravi Let's put "civil" back in "civilization" Home | Articles | Freeware | Music ravib@ravib.com

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups