Search results

  1. Papa_Bear1

    Access throws Error 3625 - Saying the text file [Import] specification doesn't exist, but it does.

    Good ideas... I did initially put a breakpoint on the TransferText command, as you might expect, but I did not yet try omitting some of the other steps - (like reading in the data etc.), which I'll try next. The only variation in what happens, though, is whether I skip doing anything with the...
  2. Papa_Bear1

    Access throws Error 3625 - Saying the text file [Import] specification doesn't exist, but it does.

    OK - tried this on a non-corporate-managed computer - and it does the same thing. I admit I'm quite surprised. Either the other computer has something similarly configured - or this is an actual bug of some kind (whether my code or Access). If I can find time, I'll try to whip up a simple DB...
  3. Papa_Bear1

    Access throws Error 3625 - Saying the text file [Import] specification doesn't exist, but it does.

    It is the TransferText command. I can indeed display the spec - in the system table, at any time. It exists before, during, and after the code runs.
  4. Papa_Bear1

    Access throws Error 3625 - Saying the text file [Import] specification doesn't exist, but it does.

    I understand the general principle of supplying code - but in this case, I just can't see how that matters much. I did describe what I'm doing - using TransferText, with an import spec, inside a loop, that works three times in a loop and then suddenly doesn't. Interesting point on the file size...
  5. Papa_Bear1

    Access throws Error 3625 - Saying the text file [Import] specification doesn't exist, but it does.

    I did look at the MSysIMEXSpecs, and it is there. In fact, if I were to restart the system and run it again - it seems it gets through three iterations - using that spec successfully, and then fails. So, it very likely isn't about the spec existing or being referenced properly etc.
  6. Papa_Bear1

    Access throws Error 3625 - Saying the text file [Import] specification doesn't exist, but it does.

    In this case - no - I don't have any Resume Next stuff happening, and also no SetWarnings False either (as far as I know... ;-)
  7. Papa_Bear1

    Access throws Error 3625 - Saying the text file [Import] specification doesn't exist, but it does.

    Wow - I had done a search but not within this site yet --- and so I didn't happen up on my old post! Yikes... And it was the EXACT same problem... Ugh... Sorry about that... I'd like to supply code, but I'd have to find time to create that, and I may just give up ---- because ---- One extra...
  8. Papa_Bear1

    Access throws Error 3625 - Saying the text file [Import] specification doesn't exist, but it does.

    Hi, I have an import specification, that actually works fine both manually and within a VBA loop (executing a DoCmd.TransferText acLinkDelim command) about 3 times around the loop, but then on the 4th round, it suddenly claims the specification doesn't exist. My first thought was that Access...
  9. Papa_Bear1

    Solved A Really Simple Question

    Just trying to close the loop on some of the comments... I think I updated my comment after your comment --- as I did not have them open at the same time. Indeed that would be a little bit crazy -- ha. I think the issue I've had is probably changing data on the form that is open - perhaps...
  10. Papa_Bear1

    Solved A Really Simple Question

    Well - I would say that the form I'm working IS the one where the user chooses whether to perform the maintenance or not. It is true that I could probably just put up a YesNo MsgBox, asking for confirmation - but - I wanted to show them the path to the file they recently imported *while* asking...
  11. Papa_Bear1

    Solved A Really Simple Question

    I think I'm seeing the pros/cons on this. I've really only ever had occasion to use bound forms. I've had occasions to use unbound controls. This just happened to present itself - due to its simplicity - as a case where I *could* choose to make the form unbound, and was just wondering if there...
  12. Papa_Bear1

    Default Date in Textbox

    Indeed - I was thinking only for display purposes... :)
  13. Papa_Bear1

    Form seems to have table locked even after closing.

    This is a great tool - but it seems to be aimed at external connections. In this case, I'm interested in internal dependencies - so it doesn't seem to show me how a form is 'connected' to a data table, for example. Amazing tool though @isladogs - wow!
  14. Papa_Bear1

    Form seems to have table locked even after closing.

    I like the idea of knowing where the connections are... that seems to be the piece I'm missing --- will give this a try!
  15. Papa_Bear1

    Form seems to have table locked even after closing.

    > So - there is a form, bound to a table, and then its sub-form bound to another table. It is the sub-form's table that I'm trying to reset. > Given that I can't even get this to work from an entirely separate form - after the parent and sub-form have been closed - means it isn't about the...
  16. Papa_Bear1

    Form seems to have table locked even after closing.

    Hmmm - no - but I suppose only because (until now?) it hasn't mattered. Turns out - this problem isn't actually resolved. Interestingly - the first time I open the Start/Calling form, it CAN operate on that other subform's data table. But once I visit that other form/sub-form, THEN it won't...
  17. Papa_Bear1

    Form seems to have table locked even after closing.

    Good point. > I think I can see why the 1st thing I tried wouldn't work - as it doesn't really let go until you actually leave the form. > I think the 2nd option not working was due to a dumb mistake on my part (--- this is probably the one that made you figure something is really wrong and in...
  18. Papa_Bear1

    Form seems to have table locked even after closing.

    Typically, when I need Autonumber, I'll create a template table to reset it, since it will inherently increment forever and I don't want to even consider how long that would take to become a problem. Ha. This has worked without issue for a long time. Today, however, I've run into a situation...
Back
Top Bottom