comboBox1.SelectedIndex = 3;
}
private void button1_Click(object sender, EventArgs e)
{
string str = this.comboBox1.SelectedItem.ToString();
switch (str)
{
case "2009-2010学年":
this.Hide();
Form8 F = new Form8();
F.Show(); break;
……………………………………………………………………………………………
//(以下代码相似)//
}
}
进入缴费信息的界面之后,这里列举了2009-2010学年的信息,如图3.2.12所示
图3.2.13 缴费信息查询
本界面的设计思路:
本界面的关键因素是把缴费数据表jiaofei显示在本界面上。数据表jiaofei的初始数据如图3.2.14所示
图3.2.14 缴费数据表jiaofei的初始数据
此界面的关键代码为:
private void Form10_Load(object sender, EventArgs e)
{ String a = "2009-2010";
String st = @"Data Source=(localdb)\Projects;Initial Catalog=stumane"; //数据源信息
SqlConnection conn = new SqlConnection(st);//连接数据库
conn.Open(); //打开数据库
Form1 F = new Form1(); // Form1为登录界面
String sqlstr = "select * from jiaofei where 学号 = ‘" + F.textBox1.Text + "'and 学年 = '" + a + " '";//SQL Server数据库查询语言
SqlCommand com = new SqlCommand(sqlstr, conn);
SqlDataReader sdr = com.ExecuteReader();
if (sdr.HasRows) //将缴费数据表jiaofei的数据信息显示在界面上
{
if (sdr.Read())
{
this.textBox1.Text = Convert.ToString(sdr["欠费"]); C#+sqlserver学生MIS平台的设计与开发(16):http://www.751com.cn/jisuanji/lunwen_317.html