1,453
社区成员
发帖
与我相关
我的任务
分享
Option Explicit
Private Sub Form_Load()
With VSFlexGrid1
.ColComboList(1) = "AAA|BBB|CCC"
.Editable = flexEDKbdMouse
End With
End Sub
Private Sub VSFlexGrid1_AfterEdit(ByVal Row As Long, ByVal Col As Long)
If Col = 1 Then
MsgBox VSFlexGrid1.TextMatrix(Row, Col)
End If
End Sub
Private Sub VSFlexGrid1_ComboCloseUp(ByVal Row As Long, ByVal Col As Long, FinishEdit As Boolean)
FinishEdit = True
End Sub