This is how to place text in a cell - in this case, row 1, column 2:

Code:
    Dim iRow As Integer
    Dim iCol As Integer
    
    iRow = 1
    iCol = 2
    
    MSFlexGrid1.TextMatrix(iRow, iCol) = "Hello!"
This is just for an unbound FlexGrid, not connected to a datasource.