text1执行了interactivechange事件下的查询命令后,keypress事件下转移焦点无效
表单中有text1和list1两个控件text1的interactivechange事件代码
select 商品信息表
str1=alltrim(thisform.text1.value)
if empty(str1)
strtiaojian=""
else
STRTIAOJIAN="'"+STR1+"'$编号 OR "+"'"+STR1+"'$名称"
endif
thisform.list1.rowsource=""
set filter to &strtiaojian
go top
thisform.list1.rowsource="商品信息表.编号,名称,厂家,规格"
text1的keypress事件代码
LPARAMETERS nKeyCode, nShiftAltCtrl
if nkeycode=13
nodef
if alltrim(this.value)<='0'
thisform.list1.setfocus
endif
endif
为什么我在text1中输入内容后,keypress事件代码没效了,要是text1是空的就正常