-
ksh 实现的基于hpux下的性能数据以及故障的采集程序。可以作为新手练手使用...
ksh 实现的基于hpux下的性能数据以及故障的采集程序。可以作为新手练手使用-ksh based hpux to achieve the performance and fault data collection procedures. As a novice can use to practice hands
- 2023-05-03 09:55:03下载
- 积分:1
-
一个简单的点
简单的点阵程序,在一个16*16的点阵上显示一个汉字-A simple dot-matrix procedure, a 16* 16 dot matrix display a Chinese character
- 2022-08-07 19:11:21下载
- 积分:1
-
迷宫生成器vc实现
迷宫生成器vc实现-maze generator achieve vc
- 2023-04-18 22:50:04下载
- 积分:1
-
jspsmartupload图片上传类及示例 v2.0
基于jspsmartupload.jar类的jsp图片上传系统,数据库采用MSSQL,支持2级分类,您可以根据需要自己定制为三级。可以设置上传文件大孝文件类型、文件路径、生成缩略图,重命名等操作。jspsmartupload.jar上传组件必须放在tomcatcommonlib下面,或者tomcatsharedlib下面。
数据库在系统里面,自行导入或还原。
- 2023-09-02 18:20:03下载
- 积分:1
-
本系统提供按地区划分的房屋信息查询和编辑功能,VC++ & Access。...
本系统提供按地区划分的房屋信息查询和编辑功能,VC++ & Access。-The system provides a breakdown by district of the housing information and editing functions, VC++ & Access.
- 2022-01-26 05:54:34下载
- 积分:1
-
vhdl代码多路开关,小系统使用,非常方便
vhdl代码多路开关,小系统使用,非常方便-VHDL code multi-channel switch, a small system, a very convenient
- 2023-06-07 20:05:04下载
- 积分:1
-
一个C++控制台的井字过三关小游戏,是大家学习的好材料
一个C++控制台的井字过三关小游戏,是大家学习的好材料-Tic-Tac-Toe
Plays the game of tic-tac-toe against a human opponent
Uses pointers instead of refernces for function parameters
- 2022-07-25 17:50:30下载
- 积分:1
-
a C5.0 corresponding to the procedures DEMO
一个对应于C5.0的DEMO程序-a C5.0 corresponding to the procedures DEMO
- 2022-06-15 20:59:29下载
- 积分:1
-
各种常见的算法,用C写
各种常见的算法,用C写-various common algorithms, written in C
- 2022-01-25 16:32:46下载
- 积分:1
-
Visual C# 隐藏显示鼠标的源码实例
Visual C#显示隐藏鼠标的一个例子,隐藏鼠标后,使用Tab键移动光标,从代码中可发现,隐藏鼠标只需将ShowCursor(false);即可,显示时就这样:ShowCursor(true);面向C#初学者。下面是核心的代码:
//重写API函数
[System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint = "ShowCursor")]
public extern static bool ShowCursor(bool bShow);
private void btnHide_Click(object sender, EventArgs e)
{
ShowCursor(false);//鼠标隐藏
}
private void btnShow_Click(object sender, EventArgs e)
{
ShowCursor(true);//鼠标显示
}
- 2022-08-08 14:49:38下载
- 积分:1