Hi all,
I have got a simple doubt is there any ways of editing into the cells of a Flexigrid Control.If yes Suggest Please.
Thanx
Murali
Printable View
Hi all,
I have got a simple doubt is there any ways of editing into the cells of a Flexigrid Control.If yes Suggest Please.
Thanx
Murali
Murali--
You cannot directly edit the contents of an MSFLexGrid cell. You must create another control, such as a TextBox, and link the contents of the TextBox with the MSfg cell, for example,
txtBox.Text = fgrid.TextMatrix(2,2)
Then write a routine for the TextBox_Change such as
fgrid.TextMatrix(2,2)=txtBox.Text
Of course, to make it look like you're editing the MSfg cell, you'll have to superimpose your TextBox over the MSfg cell. Have fun,
--Carl
see this thread..
http://forums.vb-world.net/showthrea...threadid=13488
Steve