Hello all ..
My environment: VS2008/VB using Data Sources (datasets, binding sources, table adapters) to interact with MS Access 2007 database.
My application: A Master form displaying a 4-level hierarchy of data using listboxes instead of grids. Data source for each listbox is a query containing child table data and a stub (foreign key provided by a cross-reference table) to parent record.
Processing: User double clicks Listbox on the Master form to call a popup form bound to child table (to enable data entry). When popup SAVE is clicked, new data is saved to Child table and a new cross-reference record is created to enable future Parent-Child connections. Changes are posted directly to the underlying Access 2007 database.
Problem: On return to Master form, impacted Listbox does not refresh even though I've done another tableadapter.fill on the control. I have been unsuccessful over the last week in finding ANY way to refresh the set of queries that supply data to the Master form or the form itself. When I close/reopen the Master form, Listbox includes the new record.
Need: a way to refresh the Master table without closing/reopening.
Any ideas?