-
VB建立三角形网,继续土方量计算等!能连接到Auto cad
VB建立三角形网,继续土方量计算等!能连接到Auto cad-triangular VB established networks continue earthwork calculations! Can be connected to the Auto marker
- 2022-02-07 09:10:01下载
- 积分:1
-
VB6.0存取+
VB6.0+ACCE-VB6.0+ ACCE
- 2022-08-24 04:54:04下载
- 积分:1
-
可以实现一些高精度,超出CPU所能一次运算的数,实现任意数值长度的运算。...
可以实现一些高精度,超出CPU所能一次运算的数,实现任意数值长度的运算。-Can achieve a number of high-precision, beyond the CPU can be a number of operations, realization of arbitrary length numerical computing.
- 2022-03-13 14:15:55下载
- 积分:1
-
Small football games, complete code can freely use perspective .. QUAKE2 to writ...
小足球游戏,代码齐全可以自由视角..利用QUAKE2来写的,非常适合初级游戏开发者学习和研究.-Small football games, complete code can freely use perspective .. QUAKE2 to write, and very suitable for the primary game developers to learn and research.
- 2022-01-22 10:48:21下载
- 积分:1
-
用visual c++开发的推箱子游戏,代码
整洁易懂。
用visual c++开发的推箱子游戏,代码
整洁易懂。-with visual c Tuixiangzi development of the game, code clean understandable.
- 2022-07-04 23:54:21下载
- 积分:1
-
关联规则例子(工作室)
应用背景有很多方法可以看到项目之间的相似性。这些都是属于一般保护伞下的技术。这种技术的结果,简单来说,就是一套可以被理解为“如果这个,然后,”的规则;想象一下你坐在桌子上的10000张收据。每一个收据都代表一项交易,购买的物品。收据是一种代表性的东西,走进了客户的篮子,因此“市场篮分析”。这正是食品杂货的数据集包含的:一个集合的收据,每行1个收据和购买的物品。每一行被称为“交易”,并且每一行都代表一个项目;关键技术支持:我们的项目集发生在我们的数据集的馏分。信任:一个规则是正确的一个新的交易与项目在左边的概率。电梯:一个规则的信心超过了预期的信心;
- 2022-03-11 05:33:16下载
- 积分:1
-
e语言-CS无X隐藏
简易窗口隐藏源码
简易窗口隐藏源码
简易窗口隐藏源码
简易窗口隐藏源码
- 2022-04-22 02:15:38下载
- 积分:1
-
Because the configuration opencv and dshow programming environment is very troub...
因为配置opencv和dshow的编程环境实在很麻烦,而且需要注意的地方很多,于是我就写了这篇文章希望对大家有帮助。-Because the configuration opencv and dshow programming environment is very troublesome, and need to pay attention to a lot of places, so I wrote this article would like to have everyone help.
- 2022-01-26 05:28:25下载
- 积分:1
-
实现简单的日记本的程序,可以新建、修改、删除、查找日记本记录。...
实现简单的日记本的程序,可以新建、修改、删除、查找日记本记录。-Realize a simple diary of the process, can create, modify, delete, find diary records.
- 2022-06-21 06:58:17下载
- 积分:1
-
Java自定义鼠标光标
super("自定义光标"); //调用父类构造函数
int[] cursor={Cursor.DEFAULT_CURSOR,Cursor.HAND_CURSOR,Cursor.MOVE_CURSOR,Cursor.N_RESIZE_CURSOR,Cursor.W_RESIZE_CURSOR,Cursor.WAIT_CURSOR,Cursor.TEXT_CURSOR}; //预定义光标数组
Container container=getContentPane(); //得到容器
container.setLayout(new FlowLayout()); //设置容器布局管理器
for (int i=0;i JTextArea jta=new JTextArea(3,6); //实例化一个文本框对象
jta.setCursor(Cursor.getPredefinedCursor(cursor[i])); //设置文本框的光标
container.add(jta); //增加组件到容器上
}
Toolkit toolkit=Toolkit.getDefaultToolkit(); //得到默认的ToolKit对象
Image image=toolkit.getImage("cursor.gif"); //得到图像
Cursor customCursor=toolkit.createCustomCursor(image,new Point(6,6),"MyCursor"); //实例化自定义光标对象
JTextArea jta=new JTextArea(3,6); //实例化文本框
jta.setCursor(customCursor); //设置文本框光标
container.add(jta); //增加组件
setSize(300,160); //设置窗口大小
setVisible(true); //窗口可视
- 2022-03-06 15:35:47下载
- 积分:1