-
鼠标位置显示
鼠标位置跟踪显示能实时的显示鼠标在屏幕上的坐标,以X=,Y=的形式显示出来。当鼠标一移动,位置坐标便会跟踪。
- 2023-06-07 12:50:03下载
- 积分:1
-
在Visual C++6.0 WinXp下编译通过
采用类来实现,从CString继承而来
数据运算的结果保存在CString类中
理论上可对任意长...
在Visual C++6.0 WinXp下编译通过
采用类来实现,从CString继承而来
数据运算的结果保存在CString类中
理论上可对任意长的数据进行相加
在Release目录下有可执行文件,将*.txt拖放到longadd.exe上即可,*.txt为数据文件。
-In Visual C++6.0 WinXp compiled under implementation through the use of class, inherited from CString computing the results of the data stored in the CString class in theory can be for any length of data combined in the Release directory has the executable file will be Drag and drop the*. txt to longadd.exe on,*. txt file for data.
- 2023-08-27 20:20:03下载
- 积分:1
-
一个BMP图象处理的例子,涉及图象处理的各种技术,非常难得的完整的算法示例...
一个BMP图象处理的例子,涉及图象处理的各种技术,非常难得的完整的算法示例-a BMP image processing examples, involving the various image processing technology, a very rare example of integrity algorithm
- 2022-04-16 02:36:14下载
- 积分:1
-
这是用VC++开发的交通灯的应用程序,可以模拟交通灯
这是用VC++开发的交通灯的应用程序,可以模拟交通灯-It is developed by using VC++ application traffic lights, traffic lights can be simulated
- 2022-02-12 00:46:59下载
- 积分:1
-
想退缩,以下步骤下面的列表,你可以享受它:第一,复制文件…
想不想体验一下WINCE,照下面的步骤,你完全可以在你的台式机上运行它。第一步,文件拷贝。你需要拷贝几个必须的文件,nk.bin(WINCE的系统),loadcepc.exe(WINCE加载程序),config.sys(WINCE加载必须的设置),autoexec.bat(没有也行,有了更方便)。例如你把nk.bin和loadcepc.exe拷贝到c:cesys。Config.sys和autoexec.bat需要拷贝到dos启动盘上。第二步,启动到DOS。可以从WIN98下启动到DOS,或者做一个WIN98启动盘进入DOS,或者做一个DOS6.22的启动盘,进入DOS。。。随便你了。第三步,进入到c:cesys,执行loadcepc加载nk.bin。关于loadcepc的具体指令格式,如果你感兴趣,键入loadcepc /?,看看文档,如果你不想费劲,直接键入以下指令:loadcepc /l:800x600x16 nk.bin 。。。。。。 CE系统起来了吗?祝你试用愉快。-Want to try WINCE, following steps list below, you can enjoy it: first, copy files. you should copy nk.bin,loadcepc.exe,config.sys,autoexec.bat(optional). For example, you should copy nk.bin and loadcepc.exe to c:cesys and copy Config.sys, autoexec.bat to DOS bootup disk. Second, run in DOS, you may run into DOS from Win98 or boot from WIN98 bootup disk or DOS6.22 boot disk, as you like. Third, turn to directory c:cesys, execute loadcepc, load nk.bin. If you interist in all command format of loadcepc, type "loadcepc /?" and enter to read document. If
- 2023-06-05 12:50:05下载
- 积分:1
-
各类技术文档的样板,方便技术文档的编写。
各类技术文档的样板,方便技术文档的编写。-Model for various types of technical documentation to facilitate the preparation of technical documentation.
- 2022-03-12 14:41:49下载
- 积分:1
-
把文本转换成pdf文件,是学习pdf编成的基础知识
把文本转换成pdf文件,是学习pdf编成的基础知识-put text into pdf documents into pdf study of the basic knowledge
- 2023-03-09 20:25:02下载
- 积分:1
-
强大的图像处理库 CXImage 利用VS2012编译修改成功
本人在网上找了很久的CXImage库,强大的开源图像处理库,非常适合VC下开发图像处理的小伙伴,而且修改了错误,利用VS2012编译通过。
- 2022-05-30 09:48:26下载
- 积分:1
-
安全中断窗口 (C#)
翻译 maninwest@Codeforge 作者:Brisingr Aerowing@CodeProject
这是将 Richard MacCutchan的安全中断窗口移植到 C#
源代码在 Github 上。
使用代码
有两个显示中断窗口的方法:
public static void Blackout(IntPtr hWnd, Action action);
public static T Blackout(IntPtr hParentWnd, Func func);
第二个版本 (泛型)用于实现类似以下的功能:
BlackoutWindow.Blackout(SomeHandle, () => {
return MessageBox.Show("A Test", "A Test", MessageBoxButtons.YesNo);
});
- 2022-03-19 12:42:51下载
- 积分:1
-
直线Bresenham 算法
直线的中点 Bresenham 算法的原理:每次在主位移方向上走一步,另一个方向上走不走步取决于中点偏差判别式的值。
理想直线将平面划分为三个区域:对于直线上的点,F(x, y) = 0; 对于直线上方的点 F(x, y)>0; 对于直线下方的点F(x, y)
- 2023-06-04 13:50:03下载
- 积分:1