码迷,mamicode.com
首页 >  
搜索关键字:lpctstr    ( 282个结果
CDC::DrawText详解
函数原型 int DrawText( HDC hDC, // 设备描述表句柄 LPCTSTR lpString, // 将要绘制的字符串 int nCount, // 字符串的长度 LPRECT lpRect, // 指向矩形结构RECT的指针 UINT uFormat // 正文的绘制选项 ); ...
分类:其他好文   时间:2019-12-12 00:54:19    阅读次数:266
windows 删除文件夹所有文件夹及文件代码
1 bool DeleteFolderAll(LPCTSTR pSrcPath ) 2 { 3 if(pSrcPath == NULL) 4 return false; 5 6 wchar_t pwcPath[MAX_PATH]; 7 wcscpy(pwcPath , pSrcPath); 8 in... ...
分类:Windows程序   时间:2019-09-07 13:25:54    阅读次数:156
查找窗体
FindWindowFindWindowAFindWindowWFindWindowExFindWindowExAFindWindowExW findwindow:函数型:HWND FindWindow(LPCTSTR IpClassName,LPCTSTR IpWindowName); 参数: I ...
分类:Windows程序   时间:2019-09-02 15:42:05    阅读次数:108
CAD保存数据库
要保存一个数据库,可以使用 McDbDatabase::saveAs() 函数。 saveAs function 作用:保存一个数据库。 接口:Mcad::ErrorStatus saveAs( LPCTSTR pszFileName, const void* pSecParams = 0, LPC ...
分类:数据库   时间:2019-07-10 15:17:52    阅读次数:224
EasyX库进行图片绘制函数
引用函数:loadimage参数: // 从图片文件获取图像(bmp/jpg/gif/emf/wmf/ico)void loadimage( IMAGE* pDstImg, // 保存图像的 IMAGE 对象指针 LPCTSTR pImgFile, // 图片文件名 int nWidth = 0, ...
分类:其他好文   时间:2019-06-20 18:46:21    阅读次数:747
CAD隐藏或显示工具条上的按钮(com接口VB语言)
主要用到函数说明: MxDrawXCustomFunction::Mx_HideToolBarControl 隐藏或显示工具条上的按钮。详细说明如下: 参数 说明 IN LPCTSTR pszToolBarName 工条名称 IN LPCTSTR pszControlName = NULL 按钮名称 ...
分类:编程语言   时间:2019-06-12 11:04:00    阅读次数:166
配置文件
GetPrivateProfile系列函数 1)写入.ini文件: BOOL WritePrivateProfileString( LPCTSTR lpAppName, // INI文件中的一个字段名[节名]可以有很多个节名 LPCTSTR lpKeyName, // lpAppName 下的一个键 ...
分类:其他好文   时间:2019-06-02 16:27:37    阅读次数:109
c#与c++类型
C/C++ C# HANDLE, LPDWORD, LPVOID, void* IntPtr LPCTSTR, LPCTSTR, LPSTR, char*, const char*, Wchar_t*, LPWSTR String [in], StringBuilder [in, out] DWOR ...
分类:编程语言   时间:2019-02-28 13:06:23    阅读次数:205
LPSTR LPTSTR
LPSTR = char*LPCSTR = const char*LPTSTR:如果定义了UNICODE宏,那么LPTSTR = wchar_t*否则LPTSTR = char*LPCTSTR:如果定义了UNICODE宏,那么LPCTSTR = const wchar_t*,否则LPCSTR = c ...
分类:其他好文   时间:2019-01-18 23:08:55    阅读次数:215
CreateDialog和DialogBox
原文地址:https://blog.csdn.net/aikker/article/details/5631412 INT_PTR DialogBox( HINSTANCE hInstance, LPCTSTR lpTemplate, HWND hWndParent, DLGPROC lpDialo ...
分类:其他好文   时间:2019-01-09 01:21:23    阅读次数:171
282条   上一页 1 2 3 4 ... 29 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!