-
实用摇号器
简单的VB摇号器,帮助你在聚会和饭局等场合随机并且公正的抽取号码
运行之前要先在该工程所在位置新建一个list.txt文件,内容为被抽的名单。注意,每行写一个名字。
然后,本程序会在该文件中随机抽取。
控件说明:
一个text控件、一个command控件和一个StatusBar控件(该控件要先在菜单” 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2022-10-30 08:10:03下载
- 积分:1
-
一种类似MSN消息提示框,使用VC++开发
一种类似MSN消息提示框,使用VC++开发-MSN prompt a similar message box, use the VC++ Developer
- 2022-02-10 17:29:46下载
- 积分:1
-
C# scrollBar重绘
自绘滚动条控件,通过对滚动条控件的几个组件进行重绘,利用自己的图片替换系统图片,重载鼠标事件,来实现自己的滚动条, 新的滚动条,用户可以自己选择背景、箭头等信息
- 2022-02-15 08:51:32下载
- 积分:1
-
如何使用tabstrip的完整例子,有完整的说明
如何使用tabstrip的完整例子,有完整的说明-How to use the TabStrip complete example, has a complete description of
- 2023-02-09 15:00:03下载
- 积分:1
-
DynamicDataDisplay示波器显示C#
资源描述一个引用DynamicDataDisplay示波器显示的C#WPF设计
- 2022-03-23 05:03:40下载
- 积分:1
-
这是PC机与电力线载波芯片IT800D的通信程序
这是PC机与电力线载波芯片IT800D的通信程序-This is the PC-chip with the power line carrier communication procedures IT800D
- 2022-03-21 14:07:48下载
- 积分:1
-
A good text editor, source code, written very well, welcome to everyone to consi...
一个比较好的文本编辑器源码,写的非常不错,欢迎大家研究-A good text editor, source code, written very well, welcome to everyone to consider
- 2023-06-07 03:15:03下载
- 积分:1
-
用vc++写的email程序
用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序..用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序..用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.用vc++写的email程序.
- 2022-08-11 07:08: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
-
科学计算器,主界面具备以下功能:
1、通过直接输入表达式进行加、减、乘、除、乘方、开方、括号基本运算求值,需要考虑其符号优先级别;
2、加入三角函数,可...
科学计算器,主界面具备以下功能:
1、通过直接输入表达式进行加、减、乘、除、乘方、开方、括号基本运算求值,需要考虑其符号优先级别;
2、加入三角函数,可进行正弦、余弦、正切、余切的运算;
3、对十进制数进行二进制、八进制、十六进制的转化;
4、实现弧度制的数与角度制的数互相转化。
-Scientific calculator, the main interface with the following functions: 1, through direct input expressions to add, subtract, multiply, divide, involution, administration, basic operations in parentheses evaluated the need to consider the symbol priority 2, by adding trigonometric functions , can be sine, cosine, tangent, cotangent computing 3 pairs of decimal to binary, octal, hexadecimal, conversion 4 to achieve the number and angle of curvature of the system the number of mutual transformation of the system.
- 2023-08-17 15:00:04下载
- 积分:1