Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
To add your own item, you would need to handle the DataSource changed event on the ComboBox. Within the event, you can add a new record to the top of the data table (.Insert() it rather than .Add() it). You can check the structure of the table for the field names, but it should only have two columns... a "display" column and a "value" column. Then, just set the values in the new record and insert it into the table.
|