-
KTV 点歌系统
- 2022-06-16 14:47:32下载
- 积分:1
-
fentuanzuizhong
说明: 循环得出一个无向图中的所有最大团,提取出最大团后进行循环,取出剩余图中的最大团,直至所有点被取出(Cycling to get all the largest cliques in an undirected graph)
- 2020-06-24 19:40:02下载
- 积分:1
-
windows 下使用c++编写,图形算法演示,图形 透视算法
图形透视算法,图形算法演示,图形 透视算法
- 2022-02-02 15:13:23下载
- 积分:1
-
handle
CSharp调用API根据鼠标位置捉窗口句柄类名,还有键盘代码等,根据这个可以做类似按键精灵的操作(CSharp API call handle the mouse position to catch the window class name, as well as the keyboard code, etc., according to the Wizard button to do a similar operation)
- 2010-10-24 14:46:44下载
- 积分:1
-
cppclassic
c++四书五经,C++从入门到精通的教材(c++ classics, C++ textbook from the entry to the master)
- 2010-11-07 02:13:16下载
- 积分:1
-
Visual C# 交叉表查询
这是一个Visual C# 交动态交叉表查询示例程序,动态交叉表(SQLServer 2005)查询例子源码:
private void Frm_Main_Load(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(//创建数据库连接对象
@"Server=WIN-GI7E47AND9RLS;database=db_TomeTwo;Uid=sa;Pwd=");
SqlDataAdapter dap = new SqlDataAdapter(//创建数据适配器对象
"select * from tb_VenditionInfo", con);
DataSet ds = new DataSet();//创建数据集
dap.Fill(ds, "table");//填充数据集
dgv_Message.DataSource =//设置数据源
ds.Tables[0].DefaultView;
}
private void btn_Select_Click(object sender, EventArgs e)
{
SqlConnection con = new SqlConnection(//创建数据库连接对象
@"Server=WIN-GI7E47AND9RLS;database=db_TomeTwo;Uid=sa;Pwd=");
SqlDataAdapter dap = new SqlDataAdapter("Corss", con);//创建数据适配器
dap.SelectCommand.CommandType =//设置命令为存储过程
CommandType.StoredProcedure;
DataSet ds = new DataSet();//创建数据集
dap.Fill(ds, "table");//填充数据集
dgv_Message.DataSource =//设置数据源
ds.Tables[0].D
- 2022-12-26 00:25:03下载
- 积分:1
-
ASP.NET/C#编写的论坛,功能很强大、完善。是ASP.NET论坛的经典之做。...
ASP.NET/C#编写的论坛,功能很强大、完善。是ASP.NET论坛的经典之做。-ASP.NET/C# prepared by the forum, function very powerful and perfect. ASP.NET Forum is the classic do.
- 2023-05-12 15:25:04下载
- 积分:1
-
IEEE33
该程序是牛拉法的极坐标潮流计算,已经再33节点进行验证成功(The program is the calculation of the polar coordinate flow of the calf method)
- 2021-03-17 16:49:21下载
- 积分:1
-
C++趣味程序百例,
C/c++趣味程序百例(献给C/C++初学者),包含
1.绘制余弦曲线
2.绘制余弦曲线和直线
3.绘制圆
4.歌星大奖赛
5.求最大数
6.高次方数的尾数
7.阶乘尾数零的个数
8.借书方案知多少
9.杨辉三角形
10.数制转换
。。。
- 2022-03-23 17:18:08下载
- 积分:1
-
基于stm32pid调速
基于stm32f10x实现从PA.0输出一个占空比为可变的PWM波,正转亮一个灯,反转亮一个灯,电机停转另一个等亮使用pid进行调速,key1按下加速,key2按下减速,key3按下刹车并附有上位机程序
- 2022-02-01 19:38:13下载
- 积分:1