N
Nick
I am importing files with USB flash drives and need to designate which drive
the data is coming from. The VBA I am using does not work. Any help on this
would be greatly appreceated
Function IImsImport()
On Error GoTo IImsEmport_Err
Dim strDrive As String
strDrive = InputBox("Enter Drive for download", "")
DoCmd.TransferText acImportDelim, "ALID0001 Import Specification",
"ALID0001", "InputBox\ALID0001.TXT", True, ""
Beep
MsgBox "Down load Complete", vbOKOnly, ""
IImsEmport_Exit:
Exit Function
IImsEmport_Err:
MsgBox Error$
Resume IImsEmport_Exit
the data is coming from. The VBA I am using does not work. Any help on this
would be greatly appreceated
Function IImsImport()
On Error GoTo IImsEmport_Err
Dim strDrive As String
strDrive = InputBox("Enter Drive for download", "")
DoCmd.TransferText acImportDelim, "ALID0001 Import Specification",
"ALID0001", "InputBox\ALID0001.TXT", True, ""
Beep
MsgBox "Down load Complete", vbOKOnly, ""
IImsEmport_Exit:
Exit Function
IImsEmport_Err:
MsgBox Error$
Resume IImsEmport_Exit