E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
hwnd
delphi2010 向另一个窗口发送鼠标点击事件
procedure TForm1.Button1Click(Sender: TObject);var szText: array[0..254] of char; hCurrentWindow :
hwnd
·
2015-11-11 11:14
Delphi
wince开发菜单栏控制
初始化方法: HINSTANCE g_hInst = ::AfxGetInstanceHandle();hwndmenu = ::CommandBar_Create(g_hInst, m_
hWnd
·
2015-11-11 11:13
WinCE
shellapi资源管理器【from http://www.cnblogs.com/Clingingboy/archive/2011/04/16/2018284.html】
SHBrowseForFolder) 一.首先要为SHBrowseForFolder准备一个结构体BROWSEINFO typedef struct _browseinfoW {
HWND
·
2015-11-11 10:24
shell
CDCHandle谨慎使用
LPARAM lParam, BOOL& bHandled) { //HDC hdc = (HDC)wParam CPaintDC dc(m_
hWnd
·
2015-11-11 10:02
使用
贝壳界面库记录1-界面圆角实现
OnSize里 //HRGN hrgn = ::CreateRoundRectRgn(0,0,601,440,8,8); //::SetWindowRgn(m_
hWnd
·
2015-11-11 10:53
实现
捕获按钮离开事件.Simulate MouseEnter and MouseLeave events
Option Explicit Private Declare Function SetCapture Lib "user32" ( ByVal
hwnd
As Long)
·
2015-11-11 10:34
event
[VB] 限制窗口大小
form * '///////////// Option Explicit Private Sub Form_Load() Call Hook( Me.
hWnd
·
2015-11-11 10:33
vb
WIN7或者WIN8上边框的异常问题的解决攻略
;UxTheme.dll")); if (hInst) { typedef HRESULT (WINAPI *PFUN_SetWindowTheme)(
HWND
·
2015-11-11 10:19
win7
Win SDK 标准程序
#include <windows.h> LRESULT CALLBACK WndProc (
HWND
,
·
2015-11-11 10:31
sdk
MFC:关于MFC窗口对象(CWnd对象)与Window对象(
HWND
所指对象)的销毁问题
http://blog.csdn.net/xiaoxiongli/article/details/1670277 一个MFC窗口对象包括两方面的内容:一是窗口对象封装的窗口,即存放在m_
hWnd
·
2015-11-11 10:23
window
Windows计时器
SetTimer的函数原型如下: UINT_PTR SetTimer(
HWND
hWnd
, UINT_PTR nIDEvent, UINT uElapse
·
2015-11-11 10:13
windows
关于句柄
HWND
hBtnClose;
HWND
hWnd
=::FindWindow(NULL,"
·
2015-11-11 10:42
句柄
C# 非活动窗口截屏
public class CaptureWindows { public static Bitmap GetWindow(IntPtr
hWnd
) {
·
2015-11-11 09:59
C#
Showwindow 及参数
CharSet.Auto)] public static extern int ShowWindow(IntPtr
hwnd
·
2015-11-11 09:57
window
Win32 CreateWindow GdiPlus
#include "stdafx.h" #include "TestGidPlus.h" LRESULT CALLBACK WndProc(
HWND
, UINT
·
2015-11-11 08:02
window
WindowsAPI一日一练
1.SetWindowLong和GetWindowLong 函数原型: LONG SetWindowLong( __in
HWND
hWnd
, __in int nIndex,
·
2015-11-11 08:51
windows
控制其他应用软件
#include <Windows.h> int _tmain(int argc, _TCHAR* argv[]) { char haha[200];
HWND
hwnd
·
2015-11-11 06:53
软件
隐藏对话框上的所有控件
while( pWnd ){ pWnd->ShowWindow(SW_HIDE); pWnd = pWnd->GetWindow( GW_
HWND
·
2015-11-11 06:53
对话框
VC获取IE窗口的地址
HWND
hwnd
= 0;
hwnd
= ::FindWindowEx(
hwnd
, 0, TEXT("IEFrame"), NULL);
hwnd
= ::FindWindowEx
·
2015-11-11 06:12
IE
ShellExecute
dll")] public extern static IntPtr ShellExecute(IntPtr
hwnd
·
2015-11-11 06:07
execute
WINAPI实现记事本程序
函数原型:LRESULT SendMessage(
HWND
hWnd
,UINT Msg,WPARAM wParam,LPARAM I
·
2015-11-11 06:45
api
win32 application
include < windows.h > #include < stdio.h > LRESULT CALLBACK WinProc(
HWND
·
2015-11-11 05:27
application
Windows GDI笔记
1.Device Context //取得DC HDC GetDC(
HWND
hWnd
) //释放DC int ReleaseDC(
HWND
hWnd
,HDC DC名称); 2.GDI对象
·
2015-11-11 05:08
windows
wxWidgets 和 MFC 混合使用
void DllConfig(
HWND
hParent){ ConfigDialog dl
·
2015-11-11 05:05
wxwidgets
about ReadProcessMemory
SCOPEINFO psi_buffer; BOOL fRet = FALSE; GetWindowThreadProcessId(
hwnd
·
2015-11-11 05:37
process
VC实现对话框窗口指定颜色透明
#define WS_EX_LAYERED 0x00080000 typedef BOOL (WINAPI *lpfnSetLayeredWindowAttributes)(
HWND
·
2015-11-11 05:11
对话框
枚举当前打开的所有窗口
#include <Stdio.h> #include <Windows.h> BOOL CALLBACK EnumWindowsProc(
HWND
hWnd
, LPARAM
·
2015-11-11 05:09
枚举
vc-api-枚举所有子窗口实例
登陆这个窗口所有的子窗口 #include <windows.h> #include <stdio.h> BOOL CALLBACK EnumChildProc(
HWND
·
2015-11-11 05:08
api
m_
hWnd
HWND
是Windows系统中对所有窗口的一种标识,即窗口句柄。这是一个SDK概念。 CWnd是MFC类库中所有窗口类的基类。
·
2015-11-11 04:29
MFC窗口子类化
由于这种修改只涉及到一个窗口的内存块,因此它不会影响到属于同一窗口类的其它窗口的功能和表现(IDà
HWND
àCWnd)。窗口子类化中最常见的是修改窗口内存
·
2015-11-11 04:17
mfc
MFC消息机制 2
我们接下来来看消息的处理流程: 以下描述消息从AfxWndProc起点开始的处理流程: 1) AfxWndProc(
HWND
·
2015-11-11 04:15
mfc
MFC 消息处理顺序
MFC 消息传递顺序 LRESULT CALLBACK AfxWndProc(
HWND
hWnd
, UINT nMsg, WPARAM wParam, LPARAM lParam)  
·
2015-11-11 03:55
mfc
MFC 定制控件(Customize Control) 及 MFC CWnd和WIN32
HWND
关联方法
MFC 定制控件(Customize Control) 及 MFC CWnd和WIN32
HWND
关联方法 <参考资料 MSDN MFC TNO 15> 文档将概述MFC
·
2015-11-11 03:41
Win32
WTL 9.0的变化 - atlctrls.h
第1249行增加: void GetMargins(UINT& nLeft, UINT& nRight) const { ATLASSERT(::IsWindow(m_
hWnd
·
2015-11-11 03:39
ls
更改路径
function SelectDirectory(Handle:
hwnd
; const Caption: string; //更改目录  
·
2015-11-11 03:48
路径
MFC学习笔记之三————区分窗口类对象以及窗口&&四种获得DC方式画图
当一个窗口销毁时,与C++窗口类对象没有关系,他们之间的纽带在于这个C++窗口类内部成员变量(如m_
hWnd
),该变量保存了与这个C++窗口对象相关的那个窗口的句柄。
·
2015-11-11 03:00
学习笔记
MFC学习笔记之一——————win32 SDK程序框架逻辑剖析
来看看消息中具体应有的那些信息: 1 typedef struct tagMSG { // msg 2
HWND
hwnd
;3
·
2015-11-11 02:56
Win32
无句柄的控件--spy++查找不到的控件
对,是没有句柄 轻量控件有时也被称为“无窗口的控件”,它与常规的控件有一点显著的区别:它们不具有窗口句柄(
hWnd
属性)。
·
2015-11-11 02:53
查找
CListCtrl使用
//设置ListCtrl的风格 LONG styles; styles = GetWindowLong( m_user.m_
hWnd
,GWL_STYLE); styles &= ~LVS_TYPEMASK
·
2015-11-11 01:11
list
第一个 Windows 应用程序
#include < windows.h > // 窗口过程声明 LRESULT CALLBACK WndProc(
HWND
, UINT
·
2015-11-11 01:26
windows
《windows程序设计》学习_3.4:实现雷区翻转
#include<windows.h> 2 #include "resource.h" 3 4 LRESULT CALLBACK WndProc (
HWND
·
2015-11-11 01:41
windows
《windows程序设计》学习_3.3:利用xp扫雷资源
#include<windows.h> 2 #include "resource.h" 3 4 LRESULT CALLBACK WndProc (
HWND
·
2015-11-11 01:40
windows
《windows程序设计》学习_3.1:画出雷区,左键的使用
#include<windows.h> 2 #include "resource.h" 3 4 LRESULT CALLBACK WndProc (
HWND
·
2015-11-11 01:40
windows
《windows程序设计》学习_3.2:左键的使用
1 #include<windows.h> 2 #include "resource.h" 3 4 LRESULT CALLBACK WndProc (
HWND
·
2015-11-11 01:39
windows
《windows程序设计》学习_2.2:初识消息,双键的使用
1 /* 双键的使用 */ 2 3 #include <windows.h> 4 5 6 LRESULT CALLBACK WndProc(
HWND
,
·
2015-11-11 01:38
windows
《windows程序设计》学习_2.1:初识消息
include <windows.h> 2 3 //#define WM_MYMSG (WM_USER +100) 4 5 LRESULT CALLBACK WndProc(
HWND
·
2015-11-11 01:38
windows
VC 创建托盘,托盘tooltip。右键托盘菜单,点击别的地方会隐藏掉的问题。
托盘上的菜单右键弹出后,然后再别的地方,比如桌面,菜单无法隐藏掉,一直在托盘上,除非操作下菜单才能隐藏掉,只需要加上一句话 ::SetForegroundWindow(m_nid.
hWnd
); 就可以解决这个问题
·
2015-11-11 00:34
tooltip
VC判断窗口是否被遮住。 已使用到项目中。
bool IsCoveredByOtherWindow(
HWND
hWnd
) { RECT 
·
2015-11-11 00:20
VC
【笔记】理解Windows窗体产生的机制
#include<Windows.h> 2 #include<stdio.h> 3 LRESULT CALLBACK WinSunProc( 4
HWND
·
2015-11-11 00:56
windows
MFC常用 控制对话框透明属性函数
iTransparent){ HINSTANCE hInst = LoadLibrary("User32.DLL"); if(hInst) { typedef BOOL (WINAPI *SLWA)(
HWND
·
2015-11-11 00:29
mfc
上一页
25
26
27
28
29
30
31
32
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他