-
xhhyvv
system权限下,创建远程线程将dll注入用户进程,以用户身份发送消息(System permissions, will create a remote thread DLL injection user process, send a message to the user identity)
- 2017-06-02 08:51:05下载
- 积分:1
-
buanyi
为什么要上载这么多(why so many on the)
- 2004-10-04 11:32:09下载
- 积分:1
-
ftp
说明: ftp定时自动上传文件到服务器上,以方便用户获取数据,不用人工。(ftp upload files to server auto)
- 2011-03-16 19:33:49下载
- 积分:1
-
event
电表事件记录模块代码,电表用段码显示代码,用于电表计量终端等产品应用(Meter event log module code, the meter with a segment display code for the meter measuring end-product applications such as)
- 2011-06-07 10:22:05下载
- 积分:1
-
kdevelop使用手册
关于支持CMAKE的一本好书,非常值得学习(A good book of to learn C++.)
- 2017-08-02 19:24:32下载
- 积分:1
-
CGAL-4.5
CGAL,Computational Geometry Algorithms Library,计算几何算法库,设计目标是,以C++库的形式,提供方便,高效,可靠的几何算法。CGAL可用于各种需要几何计算的领域,如计算机图形学,科学可视化,计算机辅助设计和建模,地理信息系统,分子生物学,医学成像,机器人运动规划,网格生成,数值方法等等。 计算几何算法库(CGAL),提供计算几何相关的数据结构和算法,诸如三角剖分(2D约束三角剖分及二维和三维Delaunay三角剖分),Voronoi图(二维和三维的点,2D加权Voronoi图,分割Voronoi图等),多边形(布尔操作,偏置),多面体(布尔运算),曲线整理及其应用,网格生成(二维Delaunay网格生成和三维表面和体积网格生成等),几何处理(表面网格简化,细分和参数化等),凸壳算法(2D,3D和dD),搜索结构(近邻搜索,kd树等),插值,形状分析,拟合,距离等。(The goal of the CGAL Open Source Project is to provide easy access to efficient and reliable geometric algorithms in the form of a C++ library. CGAL is used in various areas needing geometric computation, such as: computer graphics, scientific visualization, computer aided design and modeling, geographic information systems, molecular biology, medical imaging, robotics and motion planning, mesh generation, numerical methods... More on the projects using CGAL web page.
The Computational Geometry Algorithms Library (CGAL), offers data structures and algorithms like triangulations (2D constrained triangulations, and Delaunay triangulations and periodic triangulations in 2D and 3D), Voronoi diagrams (for 2D and 3D points, 2D additively weighted Voronoi diagrams, and segment Voronoi diagrams), polygons (Boolean operations, offsets, straight skeleton), polyhedra (Boolean operations), arrangements of curves and their applications (2D and 3D envelopes, Minkowski sums), mesh generation (2D Del)
- 2014-12-11 14:45:21下载
- 积分:1
-
clustering_kmean
Kmeans PLUS abib clustering template and benchmark
- 2014-01-29 16:22:49下载
- 积分:1
-
超详细解析托管代码与非托管代码以及dll调用
详细解析托管代码与非托管代码以及dll调用.(Ultra - detailed parsing of managed and unmanaged code and DLL calls)
- 2018-03-12 16:21:15下载
- 积分:1
-
无人机mpu6050模块
MPU6050为全球首例整合性6轴运动处理组件,相较于多组件方案,免除了组合陀螺仪与加速器时之轴间差的问题,减少了大量的封装空间。这是关于MPU6050的源代码
- 2022-01-26 07:56:21下载
- 积分:1
-
C# UseHaving 在HAVING子句中使用子查询过滤平均值数据
C# UseHaving 在HAVING子句中使用子查询过滤数据,查询学生表中学生年龄大于平均学生年龄的学生信息,查询代码的编写如下:string P_Str_ConnectionStr = string.Format(//创建数据库连接字符串
@"server=WIN-GI7E47AND9RLS;database=db_TomeTwo;uid=sa;pwd=");
string P_Str_SqlStr = string.Format(//创建SQL查询字符串
@"SELECT 所在学院,学生姓名,年龄,(SELECT AVG(年龄) FROM tb_Student) AS 平均年龄 FROM tb_Student GROUP BY 所在学院,学生姓名,年龄 HAVING 年龄>(SELECT AVG(年龄) FROM tb_Student)");
SqlDataAdapter P_SqlDataAdapter = new SqlDataAdapter(//创建数据适配器
P_Str_SqlStr, P_Str_ConnectionStr);
DataTable P_dt = new DataTable();//创建数据表
P_SqlDataAdapter.Fill(P_dt);//填充数据表
return P_dt;//返回数据表
请在测试前,连接好数据库,本例只是分享代码,并没有找到数据库文件。
- 2022-03-02 18:15:07下载
- 积分:1