刚学习c#没多久,现在正在学习编写一个仓库管理程序,开发环境是windows xp eng(sp2),visual studio 2003, sql server 2000
数据库是在服务器上。
是windows application,不是.net
我的问题是,在窗口里面放入一个datagrid1,在运行程序的时候可以把数据库中的一个表内容都出来,但是现在有点问题
我在public class form1 中定义private DataSet ds;
下面窗体加载
///////////////////////////////////////////////////////
private void Form1_Load(object sender, System.EventArgs e)
{
SqlConnection cn = new SqlConnection("server=;uid=;password=;database=");
SqlDataAdapter daLocbin = new SqlDataAdapter("select * from locbin",cn);
ds = new DataSet();
daLocbin.Fill(ds,"locbin");
dataGrid1.DataSource = ds;
}
///////////////////////////////////////////////////////
运行可以成功,内容可以读出
但是如果把当前窗口当作一个子窗口的时候,运行程序就会报错:
D:\VS APP\wm\BinMaster.cs(17): The type or namespace name 'DataSet' could not be found (are you missing a using directive or an assembly reference?)
[此贴子已经被作者于2007-4-17 11:24:24编辑过]