-
一款功能较为齐全的画图软件,源代码有些复杂,不适合初学者...
一款功能较为齐全的画图软件,源代码有些复杂,不适合初学者-A function of drawing a more complete software, source code, some complex, not suitable for beginners
- 2022-01-27 08:57:34下载
- 积分:1
-
计算机辅助排样(CAN) ,是计算机辅助设计与制造(CAD/CAM)技术的重要分支之一,它广泛地应用于线材、卷材和板材的分割排样,通过提供高质量的排样方案,达到...
计算机辅助排样(CAN) ,是计算机辅助设计与制造(CAD/CAM)技术的重要分支之一,它广泛地应用于线材、卷材和板材的分割排样,通过提供高质量的排样方案,达到节约原材料,降低产品成本的目的。-CAD Layout (CAN), is a computer-aided design and manufacturing (CAD/CAM) technology, one of the important branches, it is widely used in wire, sheet and plate division of nesting, through the provision of high-quality nesting programs, saving raw materials and products into lower the purposes.
- 2022-04-10 17:22:26下载
- 积分:1
-
文件管理系统(java),WEB界面编程基于java
文件管理系统(java),WEB界面编程基于java-Document Management System (java), the Web-based java programming interface
- 2023-04-26 01:00:04下载
- 积分:1
-
This module uses VB code preparation, VB programming interface to the various co...
本模块使用VB代码编写,实现VB编写程序的界面各个控件(如按钮控件)外观变为XP类-This module uses VB code preparation, VB programming interface to the various control (such as button controls) aesthetic category into XP
- 2022-01-21 19:23:38下载
- 积分:1
-
vb+mapx实现二次开发
用VB实现对mapx的开发,VB+MAPX5.0做的简单电子地图程序,包括放大,缩小,拖动,查询,测距,图层显示,标注显示.只为给初学者一个例子
- 2022-02-04 13:15:32下载
- 积分:1
-
This is a good original software code, I learned from the Internet, and do not k...
这是一个不错的软件原码,我从网上下的,不知道怎和以样,你们自已看看吧,我也不知道-This is a good original software code, I learned from the Internet, and do not know how to like, you own and watch it, I do not know
- 2023-08-03 11:00:03下载
- 积分:1
-
中国-VC.帮助文件和源代码的使用,图书馆在-VC.…
GardenUI中文使用帮助文件及源码,GardenUI Library 是windows平台下图形用户界面的专业开发包,支持普通窗口、单文档窗口、多文档窗口的界面的扩展和定制-Chinese GardenUI the use of help files and source code, GardenUI Library is under the windows platform graphical user interface of the professional development package to support the ordinary window, a single document window, multi-document interface window to expand and customize
- 2022-03-18 06:03:22下载
- 积分:1
-
定时关机程序
该程序模仿windows风格,实现的带有托盘的定时关机、重启、注销程序,虽然比较简单,对于VC初学者来说,还是比较有帮助,可以看看程序托盘的编程方法,和系统启动的实现过程。同时,也提供了计时器的详细实现过程和系统时间的处理函数,这些对于初学者可能有些收获。
- 2022-04-27 12:35:50下载
- 积分:1
-
运行后在屏幕上画出一个漂亮的大表,可以通过它调节系统时钟。...
运行后在屏幕上画出一个漂亮的大表,可以通过它调节系统时钟。-After running on the screen to draw a pretty big table, you can adjust the system clock through it.
- 2022-03-22 05:10:29下载
- 积分:1
-
MFC线程控制
资源描述
创建线程
1、创建线程 AfxBeginThread();
2、线程函数 typedef UINT(AFX_CDECL *AFX_THREADPPOC)(LPVOID);
线程控制
1、暂停
2、继续
3、终止
说明
1、主线程一般用来做界面响应
2、线程函数声明(.h)
//线程函数声明
UINT DemoA(LPVOID pParam);//线程函数需设成全局的,不能写在类下(类下要做成静态函数)
UINT DemoB(LPVOID pParam);
UINT DemoC(LPVOID pParam);
3、线程函数定义(.cpp)
CWinThread* g_pThreadA;
BOOL g_bRunningA;//记录线程是否运行
//线程函数定义
UINT DemoA(LPVOID pParam)
{
for (int m = 1; m m_pMainWnd->m_hWnd,IDC_OUTPUT2, m,false);
Sleep(1000);
}
g_bRunningA = false;
g_pThreadA = NULL;
return 0;
}
UINT DemoB(LPVOID pParam)
{
for (int n = 1; n m_pMainWnd->m_hWnd, I
- 2023-05-28 17:40:24下载
- 积分:1