Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. lobo3101

    Calling a batch FTP via VBA - will not load or give errors

    That absolutely resolved it! Thank you so much. If you have time, could you explain WHY that worked?
  2. lobo3101

    Calling a batch FTP via VBA - will not load or give errors

    I'm trying to call a batch file that uses SFTP. If I double-click the batch file, it FTP's successfully. But when trying to call that .bat through VBA, I either receive strange errors or no error at all. Method: lShellResults = objShell.Run("R:\directory\SendSFTP.bat", 7, False) Results...
  3. lobo3101

    Importing Text file with Extra Delimiters - how to delete?

    That was exactly it! The HoldingsException needed "" around it!! Thankyou so much. None of the examples I looked at online had quotes there so I didn't think I'd need them. Very good!
  4. lobo3101

    Importing Text file with Extra Delimiters - how to delete?

    DoCmd.TransferText acImportDelim, HoldingsException, "tblHoldings_Exception", _ "\\Folder\Reports\" & "Holdings Exception Report-" & today & ".txt", True rstC.Open "select * from tblHoldings_Exception", conn, adOpenDynamic, adLockOptimistic Do Until rstC.EOF...
  5. lobo3101

    Importing Text file with Extra Delimiters - how to delete?

    I've checked those last 2 fields as "SKIP" in the Advanced portion of Import Table and saved it. Still receiving this error though: "Field NoName doesn't exist in table tblHoldings_Exception" All fields are mapped and accounted for...but I think for some reason those 2 extra commas are still...
  6. lobo3101

    Importing Text file with Extra Delimiters - how to delete?

    Yanno, I'm not familiar with that specification. I tried to search google on it but couldn't come up with anything solid. Could you provide anymore detail?
  7. lobo3101

    Importing Text file with Extra Delimiters - how to delete?

    I'm importing text files that are comma-delimited. Unfortunately, the software that creates these files drops 2 extra commas in at the end of each line. This throws off my import and Access sees a "No Name" field there. What's the best way to delete these commas? Is there an RTrim that'll read...

Part and Inventory Search

Back
Top