VBA/Excel/Access/Word/Access/Table Output — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 12:46, 26 мая 2010
Export table to html file
Sub OutputToHTML()
DoCmd.OutputTo acOutputTable, "tblComplaints", acFormatHTML, "c:\s.html", True
End Sub
Output table to asp file
Sub OutputToASP()
DoCmd.OutputTo acOutputTable, "tblComplaints", acFormatASP, "c:\t.asp"
End Sub