How can i add a blank item to the ultra combo box list of values dynamically
Thanks in advance
You would have to add a row to the underlying data source.
Example:DataTable table = this.ultraCombo1.DataSource as DataTable;
if ( table != null ) table.Rows.Add( new object[]{ false, "test", "test", 233, DateTime.Today } );
Thanks it worked like a charm