标题:执行结果总是出现错误,请帮忙更正一下,谢谢
只看楼主
杨为丰
Rank: 2
等 级:论坛游民
帖 子:17
专家分:16
注 册:2013-4-10
结帖率:25%
已结贴  问题点数:8 回复次数:5 
执行结果总是出现错误,请帮忙更正一下,谢谢
using System;
using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient   ;

namespace XSXK
{
    public partial class 学生信息查询 : Form
    {

        DataSet ds = new DataSet();
        SqlClient.SqlDataAdapter adp;
        BindingManagerbase bingpage;
        public 学生信息查询()
        {
            InitializeComponent();
        }

        private void 学生信息查询_Load(object sender, EventArgs e)
        {   
            
            string strconn = "server=localhost;uid=sa;pwd=; database=studencourse";
            SqlConnection conn = new SqlConnection(strconn);
            string strSql = "select * from Students";
            SqlDataAdapter adp = new SqlDataAdapter(strSql, conn);
            adp.Fill(ds, "Students");
            dataGridView1.DataSource = ds.Tables["students"];
            bingpage = this.BindingContext[ds, "Students"];
            textBox2.DataBindings.Add(new Binding("text", ds, "students.sno"));
            textBox1.DataBindings.Add(new Binding("text", ds, "students.sname"));
            textBox3.DataBindings.Add(new Binding("text", ds, "students.ssex"));
            textBox4.DataBindings.Add(new Binding("text", ds, "students.Sbircthday"));
            textBox4.Text = DateTime.Parse(textBox4.Text);
            textBox5.DataBindings.Add(new Binding("text", ds, " students.sdept"));
            richTextBox1.DataBindings.Add(new Binding("text", ds, " students.memo"));
            label8.Text = (bingpage.Count - 1);

            if (bingpage.Connt > 0)
            {
                label11.Text = "1";
            }
            comboBox1.Items.Add("学号");
            comboBox1.Items.Add("姓名");
            comboBox1.Items.Add("院系名称");


        }

   
    }
}
错误    1    找不到类型或命名空间名称“BindingManagerbase”(是否缺少 using 指令或程序集引用?
错误    2    无法将类型“System.DateTime”隐式转换为“string”
搜索更多相关主题的帖子: 信息 public 
2013-06-07 20:51
QJlin
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:3
帖 子:186
专家分:560
注 册:2013-5-18
得分:4 
在你的文件开头加入bindingmanagerbase这个引用啊,还有就是你的时间类型是不能直接转成string类型的!

慢慢前进走,不求一步登天,只求慢慢前进
2013-06-07 21:32
qq645485165
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:76
专家分:197
注 册:2013-3-16
得分:4 
textBox4.Text = DateTime.Parse(textBox4.Text);
左边是string类型,右边是datatime 类型,能不出错吗?
2013-06-08 09:06
杨为丰
Rank: 2
等 级:论坛游民
帖 子:17
专家分:16
注 册:2013-4-10
得分:0 
回复 2楼 QJlin
到底怎么修改啊!还是有错误,请指点,谢谢!
2013-06-08 09:28
杨为丰
Rank: 2
等 级:论坛游民
帖 子:17
专家分:16
注 册:2013-4-10
得分:0 
回复 3楼 qq645485165
到底怎么修改,还是有错误,请帮忙改一下!
2013-06-08 09:28
杨为丰
Rank: 2
等 级:论坛游民
帖 子:17
专家分:16
注 册:2013-4-10
得分:0 
回复 4楼 杨为丰
改后   SqlClient.SqlDataAdapter adp;有问题,怎么弄
2013-06-08 09:31



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-414771-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.098223 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved