-
InnerHook
Hook编程。如何安装钩子过程,如何编写全局钩子,动态连接库里的全局变量数据共享问题分析。(Hook programming. How to install the hook process, how to compile the overall hook, 13-17 Dynamic Link global variable data sharing analysis.)
- 2007-07-04 19:40:11下载
- 积分:1
-
OLTP
online transaction system in c on linux
- 2013-11-29 16:25:45下载
- 积分:1
-
14.AD和DA
直接使用开发板上自带的ADDA功能,稳定可靠(The direct use of the development board comes with the ADDA function, stable and reliable)
- 2017-09-17 07:20:09下载
- 积分:1
-
Calculator
計算機,可以自行延伸,很簡單的寫法,希望可以幫助有需要的人(Computer, you can extend its own, very simple wording, I hope to help people in need)
- 2013-08-23 23:14:55下载
- 积分:1
-
simple
流体力学SIMPLE算法(C语言编程实现)需自己设定边界条件(SIMPLE algorithm)
- 2013-09-06 19:00:42下载
- 积分:1
-
OpenGLDemo
使用OpenGL显示obj文件,使用GLM可以将obj文件进行解析,之后使用OpenGL中的绘画功能将obj文件中的点线面进行描绘(Use OpenGL display obj file, you can use the GLM obj file is parsed, then use OpenGL drawing functions in the obj file depicted point line)
- 2016-04-11 16:12:45下载
- 积分:1
-
adc
AVR单片机m48 8m晶振,片内adc转换c程序
(AVR Singlechip m48 8m crystal, chip adc conversion c procedures)
- 2007-10-09 13:41:06下载
- 积分:1
-
QT COM
QT5写的COM助手源码,串口助手的编写会让你对该语言对于串口的控制锻炼得得心应手的,也是串口的基本操作。QT5基于VS编译平台,不同的QT版本有点小差异,网络上搜搜就可能能够在不同版本之间切换。
- 2022-02-24 13:31:19下载
- 积分:1
-
yy-LPD6803
说明: led点阵控制的代码,经过验证可以使用。
(LED MATRIX CONTROL SOURCE, CAN USEING FREE.)
- 2011-03-01 23:48:14下载
- 积分: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