2,749
社区成员
发帖
与我相关
我的任务
分享
*-- combo1.init 事件代码
create cursor taba (bj c(10))
for i=1 to 20
insert into taba values (transform(i)+"班")
endfor
*--- 上面四行代码可以不要
with thisform.combo1
.columncount=1
.displaycount=10
.rowsource="taba.bj"
.rowsourcetype=6
.style=2
endwith