Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
UltraWebCombo in editable mode, does not seem to have a consistent property to read.
posted

I have a ultra web combo (called category) which is databound to a data table of values (can be empty). how ever when trying to read the selected or entered value, it appears i have to read one of several values to find the selected/enetered value.

 For example...

If Category.DataValue IsNot Nothing Then

objCommand.Parameters("@Category").Value = Category.DataValue    

ElseIf Category.DisplayValue IsNot Nothing Then

objCommand.Parameters("@Category").Value = Category.DisplayValue  'available in most cases but not all...

Else

objCommand.Parameters("@Category").Value = Category.SelectedRow.Cells(0).Text

End If

Is there a consitent property to read regardless to how value was selected or entered?
Parents Reply Children
No Data