Export table to html file : Table Output « Access « VBA / Excel / Access / Word






Export table to html file

 
Sub OutputToHTML()
    DoCmd.OutputTo acOutputTable, "tblComplaints", acFormatHTML, "c:\s.html", True
End Sub

 

Related examples in the same category

1.Output table to asp file