As this thread may suggest; very new to .NET<BR><BR>I'm learning about the basics of ADO+ beginning & stuck with this error message. Thanks.<BR><BR><BR>Compiler Error Message: BC30002: Type 'ADOConnection' is not defined.<BR><BR>With this code:<BR><BR><%@ Import Namespace="System.Data" %><BR><%@ Import Namespace="System.Data.ADO" %><BR><%<BR>'Set Connection String...<BR>Dim strConnString as String<BR>strConnString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=/db.mdb; " & "Persist Security Info=False"<BR><BR>'Create an ADOConnection instance<BR>Dim objConn as ADOConnection 'ERROR HERE<BR>objConn = New ADOConnection<BR><BR><BR>...etc etcSomeone can correct me if I'm wrong but I beleive the only two connection types are OleDB and SQL which use <BR>System.Data.OleDB and System.DataSqlClient respectivelyFYI<BR>http://www.4guysfromrolla.com/webtech/091500-1.2.shtmlI'm looking at the little poster that comes with Visual Studio.NET which describes all the Data and XML-Related Classes in ADO.NET and it doesn't mention ADO as a class only OLEDb and SQLClientwhether this 4guys article on ADO+ is do-able?<BR><BR>http://www.4guysfromrolla.com/webtech/091500-1.2.shtmlNope. That's Beta 1 code.