VBA/Excel/Access/Word/Access/Text Transfer
Версия от 16:33, 26 мая 2010; (обсуждение)
acImportDelim
Private Sub cmdImportDelimited_Click()
DoCmd.TransferText acImportDelim, "CompanyDelimited", "tblCompanyDelimited", "C:\Delimited.txt", True
End Sub
acImportFixed
Private Sub cmdImportFixed_Click()
DoCmd.TransferText acImportFixed, "CompanyFixed", "tblCompanyFixed", "C:\CompanyFixed.txt", True
End Sub