码迷,mamicode.com
首页 >  
搜索关键字:hwnd    ( 761个结果
ShellExecute
#include ShellExecute函数原型及参数含义如下:ShellExecute(hWnd: HWND; {指定父窗口句柄}Operation: PChar; {指定动作, 譬如: open、runas、print、edit、explore、find[2]}FileName: PChar;...
分类:其他好文   时间:2014-06-28 20:18:55    阅读次数:290
CWnd::Attach()详解
CWnd::Attach Attaches a Windows window to a CWnd object. BOOL Attach(    HWND hWndNew ); Parameters hWndNew Specifies a handle to a Windows window. 一个概念:C++对象和Windows对象的区别(来自MSDN) The win...
分类:其他好文   时间:2014-06-28 08:04:10    阅读次数:269
open_window()到底做了什么?
1 Hlong MainWndID= (Hlong)m_hWnd; 2 open_framegrabber("File", 4, 4, 0, 0, 0, 0, "default", -1, "default", -1, "default", 3 "", "default", -1, -1, &Ac....
分类:Windows程序   时间:2014-06-26 22:12:34    阅读次数:320
Win32 CreateWindow GdiPlus
#include "stdafx.h"#include "TestGidPlus.h"LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);int APIENTRY _tWinMain(HINSTANCE hInstance, HINSTANCE ...
分类:Windows程序   时间:2014-06-23 07:25:20    阅读次数:303
驱动代码内部相关关键字等
驱动代码内部相关关键字等如KillTimer、 LPVOID —指针、BOOL和bool、NEW分配内存 、HWND、UNIT、、__cdecl 、_stdcall、PASCAL 、_fastcall、_thiscall的区别与联系、 typedef LONG_PTR LPARAM;typedef UINT_PTR WPARAM;等...
分类:其他好文   时间:2014-06-22 21:18:54    阅读次数:244
Delphi SetWindowlong 的使用方法及介绍
SetWindowLong函数介绍。SetWindowLong Unicode函数原型LONG SetWindowLong(hwnd,nIndex,lNewLong)HWND hwnd; /* handle of window */int nIndex; /* offset of value to ...
分类:Windows程序   时间:2014-06-15 23:21:22    阅读次数:1167
Win32 Windows编程 二
一、第一个窗口程序 1  入口函数 WinMain 2  窗口处理函数 LRESULT CALLBACK WndProc( HWND hWnd, UINT nMsg, WPARAM wParam, LPARAM lParam ) { return DefWindowProc( hWnd, nMsg, wParam, lParam ); } 当窗口处理消息事件时 调用该函数 ...
分类:Windows程序   时间:2014-06-15 17:32:40    阅读次数:305
FindWindow使用方法
函数功能:该函数获得一个顶层窗体的句柄,该窗体的类名和窗体名与给定的字符串相匹配。这个函数不查找子窗体。在查找时不区分大写和小写。函数型:HWND FindWindow(LPCTSTR IpClassName,LPCTSTR IpWindowName);參数:IpClassName :指向一个指定了...
分类:Windows程序   时间:2014-06-15 12:51:01    阅读次数:226
WTL 9.0的变化 - atlctrls.h
atlctrls.h中是对控件的封装。第1249行增加: void GetMargins(UINT& nLeft, UINT& nRight) const { ATLASSERT(::IsWindow(m_hWnd)); DWORD dwRet = (DWORD)::SendMessage(m_.....
分类:其他好文   时间:2014-06-14 08:25:42    阅读次数:385
c++操作当前窗口句柄
句柄 这一概念是MFC里的一个类,MFC有专门的函数来获取窗口句柄。 HWND hwnd; hwnd=CreateWindow("my own windowshandle","jaycnvip",WS_OVERLAPPEDWINDOW,0,0,600,400,NULL,NULL,hInstance,NULL); 这是用一个句柄变量来保存新创建的窗口句柄。 其它如: 通过窗口标题获取窗口句柄 CW...
分类:编程语言   时间:2014-06-08 15:13:17    阅读次数:264
761条   上一页 1 ... 71 72 73 74 75 ... 77 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!