Posted 23 February 2018, 10:32 am EST
Hi,
I am using the c1FlexGrid control in a Windows Forms Application. (VB.NET)
The user fills out a Parameter Number, and on typing this number, i want to update the description column if a description is found in the database based on the parameter number filled out.
For example:
Parameter Number 1 = Description A
Parameter Number 10 = Description B
I tried to use the ChangeEdit event to capture the editor input. This works, but , it doesn’t update the description. To solve this im am calling FinishEditing, so i can change the description column.
Now i want the user to be able to continue typing, because maybe he wants to type 10 instead of 1. To solve this i am calling StartEditing, but then the current value 1 is selected and if the user continues typing, the current value will be overwritten. This way it is impossible for the user to type 10. (if a user types 10, only 0 will stay because 1 is overwritten by 0)
Is there a way to solve this?
Thanks.