Does WinForms have a DataSource control like the one in ASP.NET 2.0
cheers,
Paul June A. Domag
The ASP.NET DataSource objects are designed to simplify the process of displaying the results of queries, modifying those results and submitting changes back to the database. In Windows Forms, this scenario is already straightforward through the use of DataSets and DataAdapters, so there is no direct equivalent of the ASP.NET DataSource objects.
I hope this information proves helpful.
David Sceppa
Microsoft