-
I want to make a phone list.
i was going to use MSHFlexgrid but it says its a read only program.
I was looking for something that looks like msflexgrid and attaches to a database where ppl could add/change data in the phone list by just clicking on the displayed info.
simple nice and none cheesy looking, hehe..
I am not looking for a 3rd party app that costs money either as i am to cheap for that.
THanks for the help.
-
here it is
You can do it with MSHFlexgrid.. Just u have to catch the KeyDown event of MSHFlexgrid.. Here it is ...
Private Sub MSHFlexGrid1_KeyDown(KeyCode As Integer, Shift As Integer)
MSHFlexGrid1.Text = MSHFlexGrid1.Text & Chr(KeyCode)
End Sub
Also u have to catch the BackSpace-key/Delete Keyascii value and do necessary actions
-
Don't use the flexgrid control, just use the regular dbgrid control.