在combo1的init事件中:
this.RowSourceType= 1
this.RowSource="a,b,c,d"
在combo1的InteractiveChange事件中:
DO case CASE this.Value="a" thisform.text1.Value="小刘" CASE this.Value="b" thisform.text1.Value="小李" CASE this.Value="c" thisform.text1.Value="小陈" CASE this.Value="d" thisform.text1.Value="小吴"
ENDCASE