-
winform 自动播放图片实例,全屏播放 附完整源码
自动加载指定目录的图片,点击自动播放之后,开始全屏播放
- 2013-05-02下载
- 积分:1
-
C# 在LINQ to DataSet中对分组操作执行子查询
C# 在LINQ to DataSet中对分组操作执行子查询,相关代码:
private void button1_Click(object sender, EventArgs e)
{//在LINQ to DataSet中对分组操作执行子查询
SqlConnection MyConnection = new SqlConnection();
MyConnection.ConnectionString = @"Data Source =.SQLEXPRESS;Initial Catalog=Northwind;Integrated Security=True";
MyConnection.Open();
SqlCommand MyCommand = new SqlCommand("Select * From Orders ", MyConnection);
DataSet MySet = new DataSet();
SqlDataAdapter MyAdapter = new SqlDataAdapter(MyCommand);
MyAdapter.Fill(MySet);
DataTable MyQueryTable = MySet.Tables[0];
var MyQuery = from MyOrder in MyQueryTable.AsEnumerable()
orderby MyOrder.Field("ShipCity")
group MyOrder by MyOrder.Field("ShipCity") into g
select new
{
MyCity = g.Key,
MyMaxFreight = (from MyData in g select MyData.Field("Freight")).Max()
- 2022-01-27 20:20:32下载
- 积分:1
-
CPP
本程序可以计算出一篇文章中单词后数字后英语单词等的重复个数,很好的(This program can be calculated in a paper words after digital English words repetition of number, very good
)
- 2012-04-16 17:16:24下载
- 积分:1
-
TMS320F28335_FLASHtoRAM
TMS28335从FLASH到RAM的移植(TMS28335 from FLASH to RAM transplantation)
- 2013-01-17 15:02:43下载
- 积分:1
-
pdttern-scirce
Iterator mode 迭代器模式,很好的源码,很好(Iterator mode iterator pattern, good source, good)
- 2019-05-09 18:02:59下载
- 积分:1
-
C# 实现sock5服务端
C# 实现sock5服务端
- 2022-07-09 04:41:25下载
- 积分:1
-
cn52991421
这个是我2006年的毕业设计,从理论到伺服电机的位置控制实现,我一个人用了4个月的时间来搞,现在把整篇论文和程序都上传到这里来,希望可以对初学电机驱动的朋友有帮助。(This is my 2006, graduation design, from theory to the servo motor position control, a person I used 4 months time to do, now the entire papers and procedures are uploaded here, hope can be for beginners motor drive has to help a friend.
)
- 2011-07-31 15:01:44下载
- 积分:1
-
Encoder_arduino
arduino下的增量编码器库文件,很好用的(Incremental encoder library files under Arduino
)
- 2014-09-05 15:59:20下载
- 积分:1
-
狄德头
Tic Tac 头游戏
此代码是为了好玩:D
- 2022-05-15 03:40:30下载
- 积分:1
-
walkInTheMazeC
说明: 是C++的基础,对于初学C++的人来说,有很大的帮助
(C is the basis for learning C people, a great help)
- 2005-12-31 21:23:50下载
- 积分:1