That's because ADO from VB6 has been replaced with ADO.NET in .NET. ADO.NET doesn't contain UI controls. It contains all the stuff you need to get at data. Based on the application you are building (winform, webform, console app, windows service) you have to set up the controls based on that application's UI namespace (System.Windows.Forms, System.Web.UI, etc).
-
Peter