Textbox event calling function on Drag & Drop

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
bkaufman said:
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?
 
Back
Top