Mega Code Archive

 
Categories / VisualBasic Script / Access
 

Export table as html page

Public Sub ExportTable()    DoCmd.OutputTo acOutputTable, "tblCustomer", acFormatHTML, _                   "C:\BegVBA\Customer.html" End Sub