Display .html files on disk within a c++ app

Hey folks:

All I want to do is take a file pointer to a HTML file on disk, and display its HTML content within my application... is there an easy way to accomplish this

Thanks!


Answer this question

Display .html files on disk within a c++ app

  • dotnetJava

    The easiest way is just to execute ShellExecute with the full filename and the corresponding Internet Browser will launch.

    You can also host the IE into your application but this is much more complicated.



  • Display .html files on disk within a c++ app