Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...I also believe that we all can contribute to each other's growth by sharing knowlege and experiences. I would love to take my skills and help people around the world solve problems..."

Geography

Where in the world do Tek-Tips members come from?

doesn't exist in class or namespace error when I create a dataset-.net

kisslogicgoodbye (Programmer)
15 Aug 02 17:24
I created a dataadapter and connection.  The .net interface says create dataset, I follow the wizard.  I look at my code and all seems fine.  I save and compile and I get the error:

C:\VISION\DataEntry\DataEntry.cs(48): The type or namespace name 'Dataset1' does not exist in the class or namespace 'DataEntry.DataEntry' (are you missing an assembly reference?)

My code:

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.ServiceProcess;

namespace DataEntry
{
  public class DataEntry : System.Windows.Forms.Form    {
        private System.Windows.Forms.Panel MainMenu;
    private System.Windows.Forms.Panel Checks;
    private System.Windows.Forms.Panel ChecksForm;
        
    private System.Data.SqlClient.SqlDataAdapter sqlDataAdapterVendorContractList;
    private System.Data.SqlClient.SqlCommand sqlSelectCommandVendorContractList;
    private System.Data.SqlClient.SqlConnection sqlConnectionVendorContractList;
    private DataEntry.Dataset1 dataset11;
chiph (Programmer)
19 Aug 02 12:01
You need to include a "using System.Data.SqlClient;" statement.  

Unlike Java, .NET does not recurse through the namespaces (you can't say "using System.Data.*").  You must explicitly include each namespace that you plan to use.

Chip H.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close