Recent content by deko

  1. D

    How to disable all click events?

    thanks for the feedback! sorry for delay in response... SOS suggested: "hide the other form when the dialog is opened via code and then set the form visible again when the dialog is closed" Yep, this would prevent the rogue click for doing anything. but there are reasons why this is not...
  2. D

    How to disable all click events?

    Nope. Not the Application.Echo statements. will try to duplicate on another computer...
  3. D

    How to disable all click events?

    Here's a scrubbed version. What you don't see are some Application.Echo statements surrounding this code... I have a hunch that is the culprit, but have not tested yet. DoEvents didn't help. Set dlg = Nothing Set fso = New Scripting.FileSystemObject Set db = CurrentDb Set qdfs...
  4. D

    How to disable all click events?

    No, it's not my windows settings. I pretty sure it's the dialog closing too soon, before the OS has processed the double click. hmmm... I'll try a couple of DoEvents statements Another possible work around might be to get the mouse x/y coordinates on mouse down and ignore clicks in that area...
  5. D

    How to disable all click events?

    Thanks for the replies. It's definitely an issue with the dialog. If the user double clicks an item in the dialog rather than selecting an item and clicking OK, the double click passes a single click to whatever control is directly behind the area double clicked. For a work around I used a...
  6. D

    How to disable all click events?

    tried with a different mouse. same problem. if the dialog could be configured to ignore double clicks that should fix it (user would have to click "OK" rather than double clicking item) wondering if adjusting click speed in the OS would help...
  7. D

    How to disable all click events?

    It would be interesting to see if anyone else can duplicate this. I have Kingston Expert Mouse using Vista drivers on Win7 that could be the problem. I will test with another mouse...
  8. D

    How to disable all click events?

    Yes, I could loop through all the controls on the parent form and disable them or something, but that's a serious hack, not to mention I have lots of controls on the parent form. And I can't disable the subform or it will not receive the ItemsSelected from the Dialog. I think this is a bug with...
  9. D

    How to disable all click events?

    I have subform datasheet that opens the Office File Picker Dialog when an empty field is clicked (user picks file, filename inserted into datasheet). The problem is once the dialog is opened, it is positioned directly over several controls on the Parent form that have OnClick events. When the...
Back
Top Bottom