C#422-研究生管理信息系统,OleDbDataReader rd; string sql; sql="select MName from majorinfo"; oleCommand1.CommandText=sql; oleConnection1.Open(); rd=oleCommand1.ExecuteReader(); while (rd.Read()) { TreeNode node=new TreeNode(); node.Text=rd.GetString(0).ToString(); treeView1.Nodes.Add(node); } rd.Close(); oleConnection1.Close();
2023-12-16 22:18:57 5.13MB C#422-研究生管理信息系统
1
C#421-酒店管理系统(1),if(childFrm.WindowState == FormWindowState.Minimized) childFrm.WindowState = FormWindowState.Normal; childFrm.Activate(); return true;
2023-12-16 22:17:25 4.26MB C#421-酒店管理系统(1)
1
如何检查WPF应用程序中的用户不活动
2023-12-16 11:46:42 127KB C#3.0 .NET3.5 .NET .NET3.0
1
在visual studio环境下开发。使用c#语言。程序中使用了线程,代理。实现了客户端和服务器的通信。只是个小例子。
2023-12-16 05:04:47 68KB socket
1
C#连接Access数据库的实例教程 可以快速的连接数据库 看后让你顿时 茅塞顿开、、
2023-12-16 05:04:28 84KB C#连接Access数据库的实例教程
1
仿微软,简单功能齐全的notepad记事本程序和源码,提供给初学者交流和学习。 对search方法略作修改,查不到字符时返回起始位置; public void button1_Click(object sender, EventArgs e) { if (textBox1.Text.Length > 0) { str = textBox1.Text; fm.searchStr = textBox1.Text; fm.matchCase = checkBox1.Checked; fm.upCheck = radioButton1.Checked; } else { str = fm.searchStr; checkBox1.Checked = fm.matchCase; radioButton1.Checked = fm.upCheck; } if (str == null) { MessageBox.Show("找不到" + str, "记事本"); } else { if (checkBox1.Checked) { if (radioButton2.Checked) { select += fm.richTextBox1.SelectedText.Length; marker = select; select = fm.richTextBox1.Find(str, select, RichTextBoxFinds.MatchCase); if (select == -1 ||select=marker) { marker = start; select = start; fm.richTextBox1.SelectionStart = start; if (select != 0) fm.richTextBox1.Find(str, 0, select, RichTextBoxFinds.Reverse | RichTextBoxFinds.MatchCase); MessageBox.Show("找不到" + str, "记事本"); start = marker; } } } else { if (radioButton2.Checked) { select+=fm.richTextBox1.SelectedText.Length; marker = select; select = fm.richTextBox1.Find(str, select, RichTextBoxFinds.None); if (select==-1||select=marker) { marker = start; select = start; fm.richTextBox1.SelectionStart = start; if (select != 0) fm.richTextBox1.Find(str, 0, select, RichTextBoxFinds.Reverse | RichTextBoxFinds.None); MessageBox.Show("找不到" + str, "记事本"); start = marker; } } } } }
2023-12-16 05:04:09 164KB C#记事本
1
C#写的小软件,星座查询器,可以做学习参考的资料,实用价值不大
2023-12-16 05:03:48 840KB 星座查询 源码
1
treeview节点动态添加,新添加的节点可以处于选中状态,并且修改名字
2023-12-16 05:03:29 237KB .net treeview
1
C#网站流量统计代码源码,vs2003源码,更有数据库源码。
2023-12-16 05:02:35 998KB 网站流量 统计代码 源码
1
c#显示时间控件
2023-12-16 05:02:14 65KB
1