In my experience using MSFlexgrid or MSHFlexgrid, I learned those kinds of controls are non-editable. If you want, use datagrid control. According to the language you are using, for having editable Flexgrid, there are different things you have to keep in mind.
First, In visual Basic 6.0 you have to connect it to a datasource using this property. In Visual C++, I recommend fill the rows by CDatabase class through interactive loop (for ...).
Second, you have to use dynamic textbox or Edit controls. that means you have to create them at run-time. In Visual Basic 6.0, you have to use EnterCell and LeaveCell events for begining edit and make a copy from the cell to the text box and then set the text box position using cellheight, cellwidth, celltop, etc. properties. In visual c++, using GetCellRect , gives those positions and using dynamic creation 'new'.
Third, you have to destroy the text box or edit control and before do it copy text from dyanmic control to the cell.
I hope help u
Aldemar