combo和flexgrid
问个简单的,一combo1控件,一个flexgrid控件,如果combo1控件的下拉选项里是学生学号,当我选中一个时,flexgrid控件里显示这个学号的详细信息,就是这样,可我不知道选中其中的一个时这个代码是什么,请指点!
Combo1.List(Index) 为某一项的内容
Combo1.ListIndex是选中了那一项,从0开始算起的
Combo1.ListCount是Combo1里一共有多少项
例如:
Combo1里有三个选项,分别为 “项目1”,“项目2”,“项目3”
那么:
Combo1.ListCount = 3
如果我选了“项目1”,那么Combo1.ListIndex = 0
如果我选了“项目2”,那么Combo1.ListIndex = 1
Combo1.List(0) = "项目1"
Combo1.List(1) = "项目2"
可以通过这样一个组合得到Combo1选了那一个
Combo1.List(Combo1.ListIndex)
flexgrid控件中的数据是只读的,若要进行编辑还要进行编程
给个网址你参考http://www.rashop.cn/index.php?showtopic=1438&hl[此贴子已经被作者于2006-3-29 19:21:29编辑过]