使用instr函数来判断在指定字符串中有没有出现需要查找的字符串即可。请看下列代码:
if instr(me.combo1.text,"4")<>0 then me.text1.text = "1234567"end ifif instr(me.combo1.text,"9")<>0 then me.text1.text = "890"end if