如何使用代码使列表框自动列表?

如何使用代码使列表框自动列表?

dropdownlistbox 里定义 pbm_keydown 没有用 ,不能捕捉 .

在其父window中加此事件,然后写

if key=keyenter! and getfocus()=ddlb_1 then
ddlb_1.showlist=true
end if

但这好象有点问题,那个框框是可以显示,但那个三角形button没了
 
 
balloonman2002(Blog.csdn.net/balloonman2002 - 抵制日货)于2004-8-17 13:07:15

自定义事件pbm_keydown,内写如下代码:
if key = keyenter! then
Send(handle(this),513,0,0 )
return 1
end if