Is there a way to write an if statement that says something like:
if % addlistener(handles.Edit1, 'String','PostGet',f) occured %do something end
No products are associated with this question.
I don't really understand why you would want to do this. The purpose of the listener is to fire when something (some event) happens. Why then do you need an if()? When this something happens, the listener will fire and your if() will happen automagically.
Your handles must have been associated with a different figure number I guess.
or improperly GUIDATAed (new verb!). That is why I avoid GUIDATA like the plague.
Have the listener set a variable in an area you can test.
0 Comments