Search results

  1. theDBguy

    Solved Determine What Code Is Still Running?

    Supposedly, when you open the app using the shift bypass, no procedure should be running, so you seem to have an odd situation going here. Are you able to post a sample db to show this problem?
  2. theDBguy

    Solved Determine What Code Is Still Running?

    Can you open the file in shift bypass mode and still get the error when you hit Ctrl+G?
  3. theDBguy

    Our programmer set up this form many years ago and I would like to find out where the code is

    Did you check if there's Conditional Formatting applied to it?
  4. theDBguy

    Solved Error about assigning Null value when clicking away from deleted form field

    Quick question: What is the name of the field that you were deleting when you got that error?
  5. theDBguy

    Solved Error about assigning Null value when clicking away from deleted form field

    This error appears to be a result of your VBA code. You'll have to show us that part. You can modify it to either check for nulls or auto change nulls to something else. For example, you can use the Nz() function for that. Did you try the Before Update event? That can't be right. Access should...
  6. theDBguy

    Pb VBA

    Hi. Welcome to AWF!
  7. theDBguy

    scanning documents

    Take a look at this one. https://www.access-programmers.co.uk/forums/threads/scan-muli-page-document-in-access-database.246348/page-2#post-1317909
  8. theDBguy

    scanning documents

    Hi. Welcome to AWF? What kind of examples are you looking for? Didn't you already get an example from the second post? Are you looking for a tutorial or a link to a video? Or, are you asking for an Access database that does the document scanning? If you don't know how to code, there is a way...
  9. theDBguy

    Combox uses 'wrong' value list

    Oops, forgot about that. 😆
  10. theDBguy

    Combox uses 'wrong' value list

    If you still need help, consider posting a sample db showing the problem. Do those "valid" fields happen to be lookup fields as well?
  11. theDBguy

    Help Please

    What is the "scheme?" Do they get a point every time they log in? So, if they log in and then log out and then log in again, they get more points?
  12. theDBguy

    How to Properly Query and Search Multi-Valued Fields in a Form?

    Hi. Welcome to AWF! As you may know, an MVF column is not the same as a simple text column, so searching within an MVF would need special handling. I believe what you want to achieve is possible, but if you can avoid using MVFs, then your job would become easier. To help you with your current...
  13. theDBguy

    Solved (.Value) doesn't show textbox Value on Change() event

    Sorry, No. The Value property is usually updated only once the focus leaves the control. PS. I don't use UserForms in Access. You might give it a try and maybe it behaves differently than regular forms.
  14. theDBguy

    Solved (.Value) doesn't show textbox Value on Change() event

    Access has UserForms as well.
  15. theDBguy

    Solved (.Value) doesn't show textbox Value on Change() event

    If you don't want to use a textbox, you could try using TempVars.
  16. theDBguy

    Run-time Error 91 variable not set (class Modules)

    Which line is giving you the error?
  17. theDBguy

    the newbie guy

    Hi. Welcome to AWF! You might consider starting a new thread in a more appropriate forum.
  18. theDBguy

    New member!

    Hi. Welcome to AWF!
  19. theDBguy

    Solved Functionality differences between .accdb and .accde

    One thing you could try is add error handlers to your code, if you don't have any. ACCDEs usually just quits silently during an error, if you don't have a handler to let you know it happened. So, you may be missing something when the ACCDE version doesn't work.
Back
Top Bottom