Export table as html page : Access Import Export « Access « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Access
- Access Import Export
Export table as html page
Public Sub ExportTable()
DoCmd.OutputTo acOutputTable, "tblCustomer", acFormatHTML, _
"C:\BegVBA\Customer.html"
End Sub
Related examples in the same category