Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

How To Set Microsoft Flexgrid ReadOnly Property to FALSE.

Nishath Salman N

New member
Joined
Jun 3, 2016
Messages
1
Hi All,

Please Let me know , How Could I make any specific field of Microsoft Flexgrid Editable through C# Code.

Please Provide me the Code !!

Regards ,

Nishath Salman N
 

alex_read

Evil Genius
Joined
May 17, 2000
Messages
5,538
You'd get many more views and replies if you post this in the C# forum.

However... making a flexgrid editable requires recognising the position of the selected cell, positioning a hidden or off-screen textbox over that cell (possibly resizing the textbox also), recognizing text which the user enters into that textbox, then again hiding the textbox and programmatically setting the cell with the textbox text. It's not pretty. If you're using .net, your best bet could be to look at the DataGridView and ListView controls which are far more user friendly, faster & easier to work with...
 
Top