D
dennis g
Guest
Have an application that was orignally built for local use, but now want to split it and place the data on the server and the front-end on several desktops. Tests have gone well. However, I update the main table every day with data I get off a mainframe. I have always used this code:
Dim strTable As String
Dim strTxt As String
strTable = InputBox("Please Enter the Database Name", "Database Name", "namec_check")
strTxt = InputBox("Please enter the text file name", "Text File", "d:\names\names.txt")
to help me when I run the update. How do I specify the table when it moves to the network drive [N:\ResPro.opr\ROCNorth\names_be.mdb].
Any and all help appreciated....
'DoCmd.TransferText acImportDelim, , strTable, strTxt
DoCmd.TransferText , , strTable, strTxt
Dim strTable As String
Dim strTxt As String
strTable = InputBox("Please Enter the Database Name", "Database Name", "namec_check")
strTxt = InputBox("Please enter the text file name", "Text File", "d:\names\names.txt")
to help me when I run the update. How do I specify the table when it moves to the network drive [N:\ResPro.opr\ROCNorth\names_be.mdb].
Any and all help appreciated....
'DoCmd.TransferText acImportDelim, , strTable, strTxt
DoCmd.TransferText , , strTable, strTxt