BOOL FreeMyResource(UINT uResouceName,char *szResourceType,char *szFileName) { HRSRC hRsrc = ::FindResource(NULL,MAKEINRESOURCE(uResouceName),szResour ...
class CGridCtrl : public CWnd { DECLARE_DYNAMIC(CGridCtrl) public: void Create(CWnd* pParent, DWORD dwStyle, RECT rect, UINT nId); void InsertColumn(L ...
分类:
其他好文 时间:
2020-06-24 18:13:42
阅读次数:
85
// DIB.cpp : 定义应用程序的入口点。// #include "stdafx.h"#include "DIB.h"#include"DIBFILE.h" LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); int APIENTRY w ...
分类:
其他好文 时间:
2020-06-24 10:27:27
阅读次数:
62
头文件 #pragma once #include "pch.h" class CGridCtrl : public CWnd { public: void Create(CWnd* pParent, DWORD dwStyle, RECT rect, UINT nId); void InsertC ...
分类:
编程语言 时间:
2020-06-23 19:01:05
阅读次数:
64
一、51系列单片机与PC端串口调试助手互相进行串口通信的单片机C语言程序 #include <reg52.h> #define uchar unsigned char #define uint unsigned int unsigned char flag,a,i; uchar code table ...
分类:
其他好文 时间:
2020-06-22 19:26:48
阅读次数:
137
问题描述:MFC EDIT控件的滚动条滚动后,对话框顶部的文字重叠。 解决方法:捕获滚动事件,在定时器中重绘文字重叠区域。 主要实现代码: 1 HBRUSH CMyDlg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) 2 { 3 if(pWnd- ...
分类:
编程语言 时间:
2020-06-17 14:23:37
阅读次数:
87
功能:从调用线程的消息队列里取得消息并放于指定的结构。 函数原型: BOOL GetMessage(_Out_ LPMSG lpMsg,_In_opt_ HWND hWnd,_In_ UINT wMsgFilterMin,_In_ UINT wMsgFilterMax); lpMsg:指向MSG结构 ...
分类:
其他好文 时间:
2020-06-10 13:05:12
阅读次数:
64
一、创建头文件74hc595.h代码如下: #ifndef __74HC595_H_ #define __74HC595_H_ #include <reg52.h> #define uchar unsigned char #define uint unsigned int sbit DIO = P1 ...
分类:
其他好文 时间:
2020-06-03 13:55:43
阅读次数:
43
树形控件的结构体,LVITEMA structure typedef struct tagLVITEMA { UINT mask; int iItem; int iSubItem; UINT state; UINT stateMask; LPSTR pszText; int cchTextMax; ...
这里的单脉冲控制是指在PWM下产生指定个数的脉冲。 先在CubeMx中按照PWM进行配置。 定义一个变量表示脉冲个数。 uint8_t PWMnum = 5; 开启PWM中断。 HAL_TIM_PWM_Start_IT(&htim1, TIM_CHANNEL_1); 定义脉冲完成回调函数。 uint ...
分类:
其他好文 时间:
2020-05-23 15:03:36
阅读次数:
135