Hi Mike,
How can I clear the text of a UltraCombo int the entry screen when cbo.dropdownstyle=dropdownlist. I'm not supposed to add empty row to the datatable. Thank you.
Cs
Hi there,
try this: cbo.Value = null;
Also you can make a UNION select from your db: ex
"SELECT null AS ID, '' AS DESCR UNION SELECT YOUR_ID AS ID, YOUR_DESCR AS DESCR FROM YOUR_TABLE "
in that case you should set the cbo.Value = DbNull.Value;
Hope that helped
Nassos