毕业论文论文范文课程设计实践报告法律论文英语论文教学论文医学论文农学论文艺术论文行政论文管理论文计算机安全
您现在的位置: 毕业论文 >> 论文 >> 正文

C#+sql医院管理系统设计论文+源代码 第4页

更新时间:2012-2-15:  来源:毕业论文
}//生成数据集,论文网http://www.751com.cn/  可以根据条件联合多个表生成不同的数据集服务客户需要,非常重要。它是与数据库交互的重要纽带。
        public void getcom(string tempstr)
        {

            SqlConnection sqlconn = this.getcon();
            sqlconn.Open();
            SqlCommand sqlcom = new SqlCommand(tempstr, sqlconn);
            sqlcom.ExecuteNonQuery();
            sqlconn.Close();
            sqlconn.Dispose();

        } //执行数据库命令,返回受影响行。也是经常用到的数据库操作。
(2) 全局变量的使用,可以在整个系统中进行调用,实现一些界面之间的数据交互。具体代码如下:
class operater
    {
        //记录操作者
        public static string operatename = "";
 //记录员工职业
        public static string operatetype = "";
        //当前操作的病人姓名
        public static string nowman = "";
}
DialogResult result = MessageBox.Show("登录成功,要进入医院管理系统吗?", "提示",
                MessageBoxButtons.YesNo, MessageBoxIcon.Question);
                if (result == DialogResult.Yes)
                {本文来自辣'文.论^文·网原文请找腾讯3249.114
                    operater.operatetype = comboBox1.SelectedItem.ToString();
                    operater.operatename = textBox1.Text;
                    MainForm mf = new MainForm();
                    mf.Show();
                    this.Visible = false;

                }
                return true;
(3) 将数据库中的信息特别是标识列的信息绑定到下拉框中,方便信息的检索。具体代码如下:
DataSet getname = mydata.getds("select name from patient", "patient");
            // 将名字这一列选出来填充到数据集中,论文网http://www.751com.cn/  利用数据集对象进行相关操作
            for (int i = 0; i < getname.Tables[0].Rows.Count; i++)
            {
                this.cmb_name.Items.Add(getname.Tables[0].Rows[i][0]);//添加到下拉框选项中。
            }
            this.cmb_name.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
            this.cmb_name .AutoCompleteSource = AutoCompleteSource.ListItems;// 在输入的同时自动检索信息
(4) 在从下拉框中选定检索信息后,对应的文本框自动显示与之相关的信息。具体代码如下:
private void cmb_name_SelectedIndexChanged(object sender, EventArgs e)
        {
             string str = cmb_name.Text;
            DataSet ds = mydata.getds("select * from patient where name='" + str + "'", "patient");
            textBox1 .Text =ds.Tables [0].Rows [0]["name"].ToString ();
           comboBox1 .SelectedItem =ds .Tables [0].Rows [0]["sex"].ToString ();
            dateTimePicker1 .Value =Convert.ToDateTime(ds.Tables [0].Rows [0]["birthday"]);
            textBox2 .Text =ds .Tables [0].Rows [0]["sidno"].ToString ();
            comboBox2 .SelectedItem =ds.Tables [0].Rows [0]["sidtype"].ToString ();
            comboBox3 .SelectedItem =ds .Tables [0].Rows [0]["firstquery"].ToString ();
            textBox9 .Text =ds .Tables [0].Rows [0]["firstphone"].ToString ();
            textBox10 .Text =ds .Tables [0].Rows [0]["firstaddress"].ToString ();
            dateTimePicker2 .Value =Convert .ToDateTime (ds .Tables [0].Rows [0]["recorddate"]);
            comboBox4 .SelectedItem =ds .Tables [0].Rows [0]["cardtype"].ToString ();
            textBox11 .Text =ds .Tables [0].Rows [0]["balance"].ToString ();
            textBox12 .Text =ds .Tables [0].Rows[0]["creditlimit"].ToString ();//特别要注意从数据集的表中读取相关行列数据的方法。
        }
(5) 登录信息的验证,姓名,密码与登录类型的统一才可以登录。具体代码如下:

上一页  [1] [2] [3] [4] [5] 下一页

C#+sql医院管理系统设计论文+源代码 第4页下载如图片无法显示或论文不完整,请联系qq752018766
设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©751com.cn 辣文论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。