Hi,
We have an UltraCombo on one of our forms. With the combo you can select a year. Deleting the last two digists of the year by hand and typing two new numbers gives an error:Can't access CurrentEditText property unless the Editor is in edit mode.
Looking at the stacktrace (see screenshot), this is an internal error from the infragistics UltraCombo control. No code of us is in between and I've no idea what the problem is or to work around it.
Can anyone help?
Regards, Henk
Hello Henk,
I am not sure what exactly is your scenario. It seems to me that you have UltraGrid with a UltraCombo as editor in one of the columns. What kind is the DataSource you are using in the UltraGrid / UltraCombo?
If you could provide me a small sample reproducing the behavior I will be glad to take a look at it.
Please let us know if you need any other assistance.
Hi Danko,
The datasource of the combo is a List(Of String). I worked around it by adding this line of code:
Me.comboYear.AlwaysInEditMode = True
No idea why this is needed.