Click to See Complete Forum and Search --> : creating dll question


wuhoo
April 16th, 2004, 05:09 PM
I have a managed vc++ class which using ADO libraries, for example...

using namespace System::Data;
using namespace System::Data::OleDb;

public __gc class ConfigCheck
{

}


I want to wrap this into a dll.....

when building the dll project I get the following errors...

error C2039: 'Data' : is not a member of 'System'
error C2871: 'Data' : a namespace with this name does not exist
error C2039: 'Data' : is not a member of 'System'
error C2871: 'OleDb' : a namespace with this name does not exist

anyone have any ideas? thanks

Andreas Masur
April 16th, 2004, 05:42 PM
Please do not cross-post your questions to different forums.

Thank you very much.

Andreas Masur
April 16th, 2004, 05:44 PM
#using <System.Data.dll>

using namespace System::Data;