I have built a form with a textbox where I can drag and drop text. I want to
be able to call a function after I drop the text on the box. My problem is
the onChange event must fire before the text is in the box because my code
fails because there is no text to work with. Is there another event that
would work better or a way to delay the execution of the function until the
textbox contains the text.
Marshall Barton - 31 Aug 2006 20:15 GMT
>I have built a form with a textbox where I can drag and drop text. I want to
>be able to call a function after I drop the text on the box. My problem is
>the onChange event must fire before the text is in the box because my code
>fails because there is no text to work with. Is there another event that
>would work better or a way to delay the execution of the function until the
>textbox contains the text.
Then Change event is inappropriate for most things. Why
don't you just call the function at the end of your drop
procedure?

Signature
Marsh
MVP [MS Access]