Sorry to be wasting bandwidth here. I uncovered the answer via some extended searching in these forums.

Qt Code:
  1. ui.textBrowser->setSource(QUrl("sample.htm"));
To copy to clipboard, switch view to plain text mode 

One problem however, I have a graphic file in the same directory as "sample.htm" - "icon5.gif". [WindowsXP, Visual Studio 2005]
The setSrouce() call finds sample.htm, however, the textBrowser loads a "missing" graphic instead of the GIF file I referenced.

Qt Code:
  1. <HTML>
  2. <HEAD>
  3. <META NAME="GENERATOR" Content="Microsoft Visual Studio 8.0">
  4. <TITLE></TITLE>
  5. </HEAD>
  6. <BODY>
  7. <h1>Introduction</h1>
  8. <p>This is the first paragraph</p>
  9. <ul>
  10. <li>Item 1</li>
  11. <li>Item 2</li>
  12. <li>Item 3</li>
  13. </ul>
  14. <p>
  15. <img src="icon5.gif" />
  16. </p>
  17. </BODY>
  18. </HTML>
To copy to clipboard, switch view to plain text mode 

Why can't the textBrowser find and display the graphic?

Thanks,
Jeff