Search results

  1. theDBguy

    Updating Image Controls In Real-Time

    Oh, I see. I think the difference is, in mine, I am using the Control Source property instead of the Picture property.
  2. theDBguy

    Updating Image Controls In Real-Time

    For me, using .Refresh works. Maybe add a DoEvents or two?
  3. theDBguy

    Hello from North Carolina

    Hi. Welcome to AWF!
  4. theDBguy

    deleting a non empty directory

    Are you saying the Access file is also in the directory you want to delete?
  5. theDBguy

    HELLO FROM CONNECTICUT, USA

    Hi. Welcome to AWF!
  6. theDBguy

    Hello from Portugal!

    Hi. Welcome to AWF!
  7. theDBguy

    Error 3828 when creating a CSV from a query

    You would put the function in a standard module and call it like how @Gasman showed in post #31. Set rs = fDAOGenericRst(SourceName, dbOpenSnapshot)
  8. theDBguy

    Error 3828 when creating a CSV from a query

    Did you try using the generic rs function I mentioned?
  9. theDBguy

    Error 3828 when creating a CSV from a query

    See if this additional approach helps. Generic Recordset
  10. theDBguy

    AccessFan96

    Hi. Welcome to AWF!
  11. theDBguy

    Hello!

    Hi. Welcome to AWF!
  12. theDBguy

    New member from Texas

    Hi. Welcome to AWF!
  13. theDBguy

    Question on Comboboxes

    One approach I was thinking, if you want to allow all three info to display in the invoice, is to add a Yes/No field to indicate "CompanyOnly." Also, to avoid having extra commas in your solution, you could try something like: [CompanyName] & ("," + [LastName]) & ("," + [FirstName]) Are you sure...
  14. theDBguy

    Question on Comboboxes

    It depends on what you mean by that statement. If you have both the person's and company names, are you saying the invoice coould potentially display both or just the person or just the company name based on the company's preference? Also, if a company does not want a person's name to show in...
  15. theDBguy

    New member from Wiltshire, England

    Hi. Welcome to AWF!
  16. theDBguy

    How to automate importing 31 .csv files into SQL Server?

    Just thinking out loud but maybe try BCP? Sent from phone...
  17. theDBguy

    Howdy!

    Hi. Welcome to AWF!
  18. theDBguy

    Access calling up a web page from a unbound text box

    Can you show us the full code please?
  19. theDBguy

    RegExp Added to VBA Library with Office Version 2508

    Thanks for the info. Not sure if the following helps.
  20. theDBguy

    Force Exit on Timer

    For that scenario, it gets even easier. I didn't comment on anything specific earlier, because I couldn't remember how to detect "idle" time. But in your situation, you simply execute a trigger that the FE is listening for, so you can warn any active users that maintenance is about to begin...
Back
Top Bottom