The Crude Beginnings of a Solution
Hi, heres some crude code that may get you started. This will type whatever you type into the cell that s selected. However, the big prob is that if you type <Backspace> or something like that it just comes up as a non-displayable character. That is, it doesnt delete the last character as you wold expect backspace to do.
However, i did say it was crude, so it may get you on the right track.
I'm still looking though, you would have thought you can just enter text into a field of a flexgrid.
Perhaps it should be called MSNotSoFlexGrid :)
Private Sub MSFlexGrid1_KeyPress(KeyAscii As Integer)
MSFlexGrid1.Text = MSFlexGrid1.Text & Chr(KeyAscii)
End Sub
[Edited by funkyd77 on 03-19-2000 at 08:49 PM]