bool bit = true;
string sql = string.Format("select * from 用户表 where name='{0}' and password='{1}'and state='{2}'and worktype='{3}'", textBox1.Text, textBox2.Text, bit,comboBox1 .SelectedItem .ToString ());
SqlDataAdapter sda = new SqlDataAdapter(sql, DBHelper.connecting);
DataSet ds = new DataSet();本文来自辣'文.论^文·网原文请找腾讯3249,114
sda.Fill(ds,"用户表");
if (ds.Tables["用户表"].Rows .Count >0)
{
DialogResult result = MessageBox.Show("登录成功,要进入医院管理系统吗?", "提示",
MessageBoxButtons.YesNo,
论文网http://www.751com.cn/ MessageBoxIcon.Question);
if (result == DialogResult.Yes)
{
operater.operatetype = comboBox1.SelectedItem.ToString();
operater.operatename = textBox1.Text;
MainForm mf = new MainForm();
mf.Show();
this.Visible = false;
}
return true;
}
else
{
MessageBox.Show("用户相关信息错误,请重新输入");
textBox1.Focus();
return false;
}
}
(6) 与数据库的交互(包括更新,删除,修改等),实现前台与后台的数据交换。具体代码如下:
if (value == 1)
{
if (textBox1.Text != "")
{
myoperate.getcom("insert into Yaopin (mingcheng,pinyinma,danwei,guige,jiage,zongliang) values('" + textBox1.Text + "','" + comboBox1.Text + "','" + textBox3.Text + "','" + textBox4.Text + "','" + numericUpDown1.Value + "','" + numericUpDown2.Value + "')");
this.intonull();
MessageBox.Show("添加成功!");
value = 0;
}
else
{
MessageBox.Show("请输入新药品
论文网http://www.751com.cn/ 名!");
this.intonull();
}本文来自辣'文.论^文·网原文请找腾讯32491'14
}
if (value == 2)
{
if (textBox1.Text != "")
{
myoperate.getcom("Update Yaopin set mingcheng='" + textBox1.Text + "',pinyinma='" + comboBox1.SelectedItem.ToString() + "',danwei='" + textBox3.Text + "',guige='" + textBox4.Text + "',jiage='" + numericUpDown1.Value + "',zongliang='" + numericUpDown2.Value + "'where bianhao='" + textBox2.Text + "'");
this.intonull();
MessageBox.Show("修改成功!");
value = 0;
}
else
{
MessageBox.Show("药品名不为空!");
this.intonull();
}
}
this.init();//学会了利用临时变量的值的变化来作为执行相关语句的条件。
(7) 一些数据之间的计算(费用的合计),具体代码如下:
private void textBox10_TextChanged(object sender, EventArgs e)
{
textBox11.Text = Convert.ToString(Convert.ToDecimal (textBox10.Text.Trim ()) - Convert.ToDecimal (textBox14.Text.Trim ())); //实现在文本框中输入字符时,自动将字符转换并进行计算和显示。
论文网http://www.751com.cn/
}本文来自辣'文.论^文·网原文请找腾讯324,9114
private void button4_Click(object sender, EventArgs e)
{
string str = "select sum(heji) from Yongyao where menzhenhao='" + this.comboBox1.SelectedItem.ToString() + "'";
DataSet ds = myoperate.getds(str ,"Heji");
textBox9.Text =Convert .ToString ( Convert.ToInt32 ( ds.Tables[0].Rows[0][0].ToString ()) +Convert .ToInt32 ( textBox8 .Text ));
textBox14.Text = Convert.ToString(Convert .ToDouble (textBox9 .Text )*Convert .ToDouble (textBox13 .Text ));
}//总费用的合计。
上一页 [1] [2] [3] [4] [5]
C#+sql医院管理系统设计论文+源代码 第5页下载如图片无法显示或论文不完整,请联系qq752018766