vb6中找组合框(combobox)中几个内容的关键字

2024-11-08 01:30:46
有1个网友回答
网友(1):

使用instr函数来判断在指定字符串中有没有出现需要查找的字符串即可。请看下列代码:

if instr(me.combo1.text,"4")<>0 then
    me.text1.text = "1234567"
end if
if instr(me.combo1.text,"9")<>0 then
    me.text1.text = "890"
end if