-
优秀的VB_GRID,可以查看源代码Visit vbAccelerator
优秀的VB_GRID,可以查看源代码Visit vbAccelerator - the VB programmer s resourceS-Grid 2.0 is an all VB grid giving you the control other grids don t, and all in 480kb. Create Outlook-style grids, span column text across rows, freely set row and column heights, set colours and fonts for each cell, add icons to cells, sort and group data... -outstanding VB_GRID can view the source code Visit vbAccelerator-the VB programmer s resourceS-Grid 2.0 is an all VB grid control giving you the other grids don t, and all in 480kb. Create Outlook-style grids that span column text across rows, freely set row and column heights, set colors and fonts for each cell, add icons to cells, sort and group data ...
- 2022-05-08 12:28:30下载
- 积分:1
-
大学课程作业小组作业Java列车控制系统
带有gui的列车管理系统,可以查看列车进程,添加车,车站,旅程和司机,可以删除车站,旅程,司机和车,可以远程停车,可以查看某站点的到站时间表和某车次的旅程表,GUI非常简单不带皮肤,没有用jar包,使用了SIP, DRY等design principle,北京邮电大学&QMUL 国际学院software engineering课程作业。附带user manual。
- 2023-06-22 10:45:03下载
- 积分:1
-
动态网页应用, 可以参考一些javascrpt,html,css的用法
动态网页应用, 可以参考一些javascrpt,html,css的用法-application of danamic HTML.you can referent some
useable of javascipt,html.c
- 2022-02-02 01:49:44下载
- 积分:1
-
mouse and keyboard surveillance procedures, and with dll exe and the original do...
鼠标和键盘的监视程序,附有dll和exe及原文件,测试可行-mouse and keyboard surveillance procedures, and with dll exe and the original document, test feasible
- 2023-03-06 00:25:04下载
- 积分:1
-
分型滤波
基于WIN32 开发的一个分形滤波程序,能根据输入的数据进行分形滤波计算,并将结果保存为dat文件,具体内容可查看,例子在压缩包里有,输入文件qin.dat 输出文件自己定名,图像结果调用另一个小程序可查看。
- 2023-02-18 14:50:04下载
- 积分:1
-
一个示例程序,可以用C在DOS下编写图形化菜单,源代码测试可用...
一个示例程序,可以用C在DOS下编写图形化菜单,源代码测试可用-a sample program that can be used in DOS C prepare graphical menu, testing source code available!
- 2022-08-13 17:03:23下载
- 积分:1
-
MATLAB Web Server的配置和应用
MATLAB Web Server的配置和应用-MATLAB Web Server Configuration and Application
- 2022-11-22 20:20:03下载
- 积分:1
-
更改图标
本源代码在Windows 98 下用 Visual C++ 6.0 编译通过!供初学者学习参考。
- 2022-03-28 19:57:04下载
- 积分:1
-
一个时间的控件,LED显示,可直接调用D
一个时间的控件,LED显示,可直接调用D-a time control, LED display can be called directly D
- 2022-07-24 16:23:14下载
- 积分: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