2,749
社区成员
发帖
与我相关
我的任务
分享
*-- combobox 的 Init 事件代码:
Create Cursor Table1 (a1 c(3))
This.RowSourceType = 1
This.RowSource='110国有,120集体,130股份合作,141国有联营'
*-- combobox 的 InteractiveChange 事件代码:
Select * Into Cursor t1 From Table1 Where Alltrim(a1)=Left(This.DisplayValue,3)
If _Tally=0
Insert Into Table1 (a1) Values (Left(This.DisplayValue,3))
Endif
我的回复呢