| 发表于:2007-06-12 11:02:111楼 得分:20 |
private sub command1_click() dim strxx as string strxx = "hello " '晄嬫暘戝彫幨 if instr(1, ucase(me.combo1.text), ucase(strxx)) <> 0 then msgbox "yeye,exist " else msgbox "oh!,not exist " end if end sub private sub form_load() me.combo1.additem "kkkhello " me.combo1.additem "lllhelly " me.combo1.additem "lllhellokkk " end sub | | |
|