I'm trying to refresh the contents of a combo box which pulls data from a database on a SQL server. This I have working fine using data adapter, dataset and a binding source.
However say I was to delete one of those items in the combo box they still appear unless I close and re run my program. What I want to achieve is that the combo box contents is updated instantly instead.
I've done a bit of reading around and tried clearing items and refilling using the .fill method, even changing the datsource at runtime but it doesn't seem to work for me.
I'm certain this is possible and cannot be that difficult to achieve!