System.Data Namespace Missing?

antecedents

Member
Joined
Apr 2, 2005
Messages
13
Location
Honey Comb Hide-Out
System.Data Namespace Missing?[Resolved]

I am new to .net and was trying the quick start section that came with vbexpress ide; I noticed when trying to:
Code:
imports system.data is missing and does not show
on intellisense!

it is missing from intellisense and I havnt the slightest idea how to fix.
can someone please enlighten me?
 
Last edited by a moderator:
antecedents said:
I am new to .net and was trying the quick start section that came with vbexpress ide; I noticed when trying to:
Code:
imports system.data is missing and does not show
on intellisense!

it is missing from intellisense and I havnt the slightest idea how to fix.
can someone please enlighten me?

you need to add the imports to your module that use it (and this is ok) but also you need to reference the assembly from your project.

Go to project explorer window, right-click on "references" and choose "Add", then select (double click) System.Data.dll
 
Back
Top