I have a procedure that imports a text file from a web server
ImportTable:
'Import orders text file from web server
DoCmd.TransferText acImportDelim, "novorders Link Specification", "tbl_weborders", "\\rose-bdc\inetpub\ True, "".
All the fields come across as data type = TEXT. Which is fine for all the fields except the date field. I want to be able to import the table and then change the data type for that one field from TEXT to DATE/TIME. How can I do this through VBA?
Thank you....
ImportTable:
'Import orders text file from web server
DoCmd.TransferText acImportDelim, "novorders Link Specification", "tbl_weborders", "\\rose-bdc\inetpub\ True, "".
All the fields come across as data type = TEXT. Which is fine for all the fields except the date field. I want to be able to import the table and then change the data type for that one field from TEXT to DATE/TIME. How can I do this through VBA?
Thank you....