Code:
Private Sub flxinput_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
    txtInput.Appearance = 0
    txtInput.Tag = Str$(lngFII)
    txtInput.Move flxinput.CellLeft + flxinput.Left _
            , flxinput.CellTop + flxinput.Top _
            , flxinput.CellWidth _
            , flxinput.CellHeight
    txtInput.Visible = True
    txtInput.Enabled = True
    txtInput.ZOrder 0
    txtInput.MaxLength = flxinput.ColData(flxinput.Col) '
    txtInput.Text = flxinput.TextMatrix(flxinput.Row, flxinput.Col)

'    txtInput.ToolTipText = "Current Entry Field For the Grid"
'        '(" & CStr(f.flxInput(y).Row) & "," & CStr(f.flxInput(y).Col) & ")"
End Sub
OK, when I click on a cell, the textbox doesn't show, and it doesn't allow editing. the textbox disappears from the top of the form, though, so I know that something is working. Its just not the way that I want it. the selected cell is highlighted, though.