关于VSFlexGrid1
可以往某一列的下拉式单元格,比如ColComboList(3)中循环写入符合条件的值么?怎么写 --------------------编程问答-------------------- http://download.csdn.net/detail/veron_04/4159070 --------------------编程问答-------------------- F1.To edit the cell using a regular text box, set the ComboList property to an empty string (""). You may also define an edit mask using the EditMask property.
To edit the cell using a drop-down list, set the ComboList property to a string containing the available options, separated by pipe characters ("|"). For example:
ComboList = "ListItem 1|ListItem 2".
To edit the cell using a drop-down combo, set the ComboList property to a string containing the available options, separated by pipe characters ("|") and starting with a pipe character. For example:
ComboList = "|ComboItem 1|ComboItem 2".
You can also use edit masks with drop-down combos using the EditMask property.
To display an edit button, set the ComboList property to a string containing an ellipsis (...). Edit buttons look like regular push buttons, aligned to the right of the cell, with an ellipsis as a caption. When the user clicks on the edit button, the control fires the CellButtonClick event. For example:
ComboList = "...".
补充:VB , 控件