1

I have to do some maintenance on an old VB.NET application (Visual Studio 2003) that uses Infragistics NetAdvantage 2006. I have a UltraCombo control binded to a DataView.

How can I refresh the content displayed after a change in the database?

ggponti
  • 395
  • 5
  • 9

1 Answers1

2

It sounds like you'll need to repopulate the DataView from the database and refresh your databinding on the UltraCombo; probably pretty close to the same code you use to initially populate the DataView and set the UltraCombo databinding.

You may get a more complete answer if you post some code.

Steve Dignan
  • 8,230
  • 6
  • 30
  • 34