Fired after the text in the editor has changed.
Syntax
Private Sub VSFlexGrid_ChangeEdit()
Remarks
This event is fired while in edit mode, whenever the contents of the editor change or a new selection is made from a drop-down list.
You may use this event to provide help while the user browses the contents of a list. The current text being edited can be retrieved using the EditText property. For example:
Private Sub Form_Load()
fg.Editable = flexEDKbdMouse
fg.ColComboList(1) = "Gold|Copper|Silver|Steel|Iron"
End Sub
Private Sub fg_ChangeEdit()
Debug.Print "The current entry begins with " & Left(fg.EditText, 1)
End Sub
See Also