-
一个具有水平醒目菜单(主菜单)和弹出式菜单(子菜单)的菜单程序。
一个具有水平醒目菜单(主菜单)和弹出式菜单(子菜单)的菜单程序。-A level of eye-catching menu (main menu) and pop-up menu (submenu) menu procedures.
- 2022-10-16 12:10:03下载
- 积分:1
-
cxgrid trick for filtering
cxgrid trick for filtering
- 2023-03-01 05:55:03下载
- 积分:1
-
the procedures detailed description of how to use the VC prepared in the Windows...
本程序详细说明了如何使用VC编写的Windows托盘程序
- 2022-04-09 04:17:58下载
- 积分:1
-
Labview的应用(包括远程仪器共享)
通过利用LabVIEW的Web发布实现仪器设备的远程共享,远程用户端实现了对仪器设备和数据的共享。在远程实验过程中,用户不需要深入了解LabVIEW,也不需要自己购买安装LabVIEW软件,只需要安装一个LabVIEW插件( 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2023-02-11 16:20:17下载
- 积分:1
-
基于c#的时钟
资源描述本源程序是基于C#的时钟设计,能为初学者提供参考价值,为初学者提供基本的编写代码思路,
namespace Clock
{
public partial class MainForm : Form
{
private PointF center;
private float r;
private Pen hourPen;
private Pen minutePen;
private Pen secondPen;
private Thread timeThread;
public MainForm()
{
InitializeComponent();
ShowInTaskbar = false;//不在任务栏中显示
SetStyle(ControlStyles.DoubleBuffer, true);
SetStyle(ControlStyles.UserPaint,true);
SetStyle(ControlStyles.AllPaintingInWmPaint,true);
center = new PointF(ClientSize.Width/ 2.0f, ClientSize.Height/ 2.0f);
r = Math.Min(ClientSize.Width / 2.0f, ClientSize.Height / 2.0f);
hourPen = new Pen(Color.Black, 2.5f);
minutePen = new Pen(Color.Black, 1.5f);
secondPen = new Pen(Color.Black, 0.5f);
timeThread=new Thread(new ThreadStart(DrawTime));
timeThread.Start();
}
protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
g.Clear(BackColor);
//g.SmoothingMode =
- 2022-01-26 05:22:52下载
- 积分:1
-
cxinfotip
CXInfoTip - Information Tooltip
是我在网上找的,版权归原作者所有。-CXInfoTip- Information Tooltip is what I find online, and belongs to original author.
- 2022-05-04 22:30:41下载
- 积分:1
-
vc development interface is very troublesome, but pubMFCV can easily interface f...
vc 开发界面非常麻烦,但是pubMFCV就可以方便地进行界面的开发,并且转到vc上去,可以快速地开发-vc development interface is very troublesome, but pubMFCV can easily interface for the development, and up to vc, can be rapidly developed
- 2022-06-16 17:38:30下载
- 积分:1
-
this small program written in good, but after I downloaded did not compile succe...
这个小程序写的不错,但我下载后没编译成功,大家看看!-this small program written in good, but after I downloaded did not compile successfully, we see!
- 2022-09-21 12:45:03下载
- 积分:1
-
MFC创建进程、打开进程、终止进程
资源描述
创建进程、打开进程、终止进程
*两个函数 CreateProcess、openProcess、TerminateProcess
*获得进程句柄
*获得进程号
*提升进程权限
*Microsoft Spy++
操作平台:win10+vs2013 pro
操作步骤:
1、创建进程
PROCESS_INFORMATION pi;//进程信息结构
STARTUPINFO si;//启动信息结构
memset(&si, 0, sizeof(si));
si.cb = sizeof(si);
si.wShowWindow = SW_SHOW;
si.dwFlags = STARTF_USESHOWWINDOW;
TCHAR szPath[] = TEXT("c:windowssystem32
otepad.exe E:c++MFCa.txt");
BOOL bRet = ::CreateProcess(NULL, szPath, NULL, FALSE, NULL, NULL, NULL, NULL, &si, &pi);
int error = GetLastError();
if (bRet)
{
::CloseHandle(pi.hThread);
::CloseHandle(pi.hProcess);
AfxMessageBox(TEXT("创建进程成功"));
}
else
{
AfxMessageBox(TEXT("创建进程失败"));
}
2、打开进程
DWORD pid;
//若有指定窗口类和窗口名称则表示成功返回一个窗口的句柄
HWND hCalc = ::FindWindow(TEXT("Note
- 2022-03-25 15:36:01下载
- 积分:1
-
MFC_学生成绩管理系统
输入功能:由键盘输入若干个学生的学号、姓名、三科成绩,并计算出平均成绩和总成
绩。
2. 插入功能:按学号增加一个学生信息,并将其插入。
3. 排序功能,按要求对学生信息进行排序,分为按学号和按总成绩进行排序两种情形,并
输出结果。
4. 查询功能:按要求查找学生信息,分为按学号和姓名进行查询两种情形,并输出结果。
5. 删除功能:按要求将学生信息删除,分为按学号和姓名进行删除两种情形。
6. 输出功能:按学号输出学生信息。
7. 成绩升降:同一个学生,不同时期之间成绩浮动情况查询。
- 2022-05-21 10:26:02下载
- 积分:1