Hi Guys,
I was just trying to transfer data from access tables to a txt file and then back from file into a table using following code
Private Sub Command0_Click()
DoCmd.TransferText acExportDelim, "Db Export Specification", "AUTHENTICATION", "J:\Power Equipment\Common\SK\db.TXT"
End Sub
Private Sub Command1_Click()
strSQL = "delete * from AUTHENTICATION_TEST"
DoCmd.RunSQL strSQL
DoCmd.TransferText acImportDelim, "Db Import Authentication Specification", "AUTHENTICATION_TEST", "J:\Power Equipment\Common\SK\db.TXT"
End Sub
Is it possible to create and manipulate import/export specifications using the VBA code rather than the access manu so that I can make it work on different systems.
Thanks for your time