QQ,你也想的太复杂了吧,教你个简单高效的!
1、把Textentry控件中的keyFeedback属性设为'Yes'
2、覆写_onKey或者_onValueChanged方法,个人认为你的需求只要覆写_onValueChanged就足够了
[code:d583a]ONVALUECHANGED: PUBLIC method;
put 'Value changed';
......
endmethod;
ONKEY: PUBLIC method;
put 'Keyboard pressed';
......
endmethod;[/code:d583a]
我记得好像student也提过一次,不过那次是Combobox,不知道那次的问题解决了没有?
<!-- m --><a class="postlink" href="http://shiyiming.51.net/forum/viewtopic.php?t=380">http://shiyiming.51.net/forum/viewtopic.php?t=380</a><!-- m -->