You can generate a model report or a multimodel report as HTML using the following method on BaseModelReport: GenerateHTML(ByVal FileName As String) As Boolean.
Example
set m = ActiveModel
For each Report in m.Reports
Filename = Report.name & ".htm"
Report.GenerateHTML (filename)
Next