hi all - on a windows form i have a combobox called currency, it is populated by a tableadapter called exchangerate which is turn populated by a dataset called mydataset.
on form load, i issue update commands to the backend database that holds the table which populates the dataset - they work. if i look at the update to the combobox, they are not reflected until i exit and restart the app - then they're fine.
further down the formload i've tried
am i missing something silly to have the values in the combobox change and refresh at the time of the update to the database? as i said, an exit and restart of the app displays the accurate data....i can't figure this out for the life of me.Code:Me.exchangerate.Update(Me.DataSet.Currency) Me.CurrencyComboBox.Refresh()




Reply With Quote