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
利用vc抓取屏幕图像
HBITMAP CBitmapDlg::GetScreen() {
HWND
hwnd
=::GetDesktopWindow(); HDC hsrc=::GetDC(
hwnd
·
2015-11-11 00:04
VC
关于进程的章节 核心编程
获取的是当前进程的文件所在的路径 2 GetModuleHandle();//获取模块的句柄,参数为NULL时,获取当前进程的文件的句柄 1 SendMessage(
HWND
_BROADCAST
·
2015-11-10 23:04
编程
管理员与命名空间绑定、只能运行一个事例、MFC改变图标(windows核心编程)
// Sets the dialog box icons inline void CMFC_CORE_1Dlg::chSETDLGICONS(
HWND
hWnd
, int idi) { ::
·
2015-11-10 23:03
windows
windows核心编程随笔
char text[256] = {0}; char text1[256] = {0}; int i=0; GetDlgItemTextA(this->m_
hWnd
·
2015-11-10 23:01
windows
GetWindowThreadProcessId用法
函数原型;DWORD GetWindowThreadProcessld(
HWND
hwnd
,LPDWORD lpdwProcessld);  
·
2015-11-10 23:42
process
C# 判断某程序是否运行
; private static extern bool SetForegroundWindow(IntPtr
hWnd
·
2015-11-10 22:41
C#
如何在其他程序的窗口上创建按钮并使之能响应
程序运行界面如下图: 将动态连接库注入其他进程的代码如下: BOOL WINAPI RT_CTRL_BTN(LPCSTR lpszLibFile,
HWND
hWnd
, DWORD dwID
·
2015-11-10 22:52
创建
托盘编程例子
void CTimeWakeDlg::toTray(){NOTIFYICONDATA nid;nid.cbSize=(DWORD)sizeof(NOTIFYICONDATA);nid.
hWnd
=this
·
2015-11-10 22:44
编程
VC中的CWnd指针和
HWnd
的区别于联系
HWND
是Windows系统中对所有窗口的一种标识,即窗口句柄。这是一个SDK概念。 CWnd是MFC类库中所有窗口类的基类。
·
2015-11-10 22:42
区别
shellexecute 和 createprocess,运行一个程序直到其结束,偷偷运行一个程序
ShellExecute(this->m_
hWnd
,"open","calc.exe","","", SW_SHOW
·
2015-11-10 22:39
process
VC设置程序热键
在OnInitDialog中调用RegisterHotKey设置热键 RegisterHotKey(m_
hWnd
,1001,MOD_CONTROL|MOD_SHIFT
·
2015-11-10 22:33
VC
Directx+CEGUI把界面集成到游戏中,支持全屏方式(c++)
hookDx8; NewD3Device8 * lpDevice = 0 ; CGame game; LRESULT CALLBACK FilterWndProc(
HWND
·
2015-11-10 22:25
C++
植物大战僵尸外挂 核心源代码
pId;
HWND
·
2015-11-10 22:24
源代码
[VC++学挂] 读取内存数据
OnMemoryRead() { // baseURL 23581628
HWND
·
2015-11-10 22:22
vc++
如何使用SendMessage发送按键组合,例如:Ctrl+A
代码 var
hwnd
:  
·
2015-11-10 22:10
message
RegisterHotKey的具体使用方法
用到3个API函数 BOOL RegisterHotKey(
HWND
hWnd
, //响应该热键的窗口句柄 Int id, //该热键的唯一标识 UINT fsModifiers, //
·
2015-11-10 22:54
key
Delphi中一个获得窗口图象的函数
过程名: CreateBMPFromWindow 功能: 获得一个句柄为
Hwnd
的窗口的图象 参数:&
·
2015-11-10 22:42
Delphi
MessageBox的常见用法
一 函数原型及参数 function MessageBox(
hWnd
:
HWND
; Text, Caption: PChar;
·
2015-11-10 22:35
message
判断快捷方式及快捷方式指向的程序
#include <shlobj.h> HRESULT GetLinkFilePath(
HWND
hWnd
, LPWSTR lpwsLinkName, LPWSTR lpwsLinkPath
·
2015-11-10 22:04
程序
读取被选中的单选框和复选框中的内容
#include
LRESULT CALLBACK WndProc(
HWND
, UINT, WPARAM, LPARAM); HINSTANCE hInst; /*
努力喵
·
2015-11-10 22:00
MFC CreateWindow介绍
HWND
CreateWindow( LPCTST
·
2015-11-10 22:57
window
MFC 窗体样式修改
关于MFC存在GetWindowLongW和GetWindowLongA使用哪一个,可以通过 IsWindowUnicode(this->m_
hWnd
)获取是使用哪一类型,true则使用GetWindowLongW
·
2015-11-10 22:48
mfc
MFC 窗体注册 WNDCLASS
//初始化 //初始化包括窗口类的定义、注册、创建窗口实例和显示窗口四部分 {
HWND
hwnd
; MSG Msg; WNDCLASS wndclass; char lpszClassName
·
2015-11-10 22:47
Class
深入浅出ShellExecute
ShellExecute(this->m_
hWnd
,"open","calc.exe","","", SW_SHOW
·
2015-11-10 21:30
execute
进入MFC讲坛的前言(三)
MFC中的窗口创建及窗口消息映射 我经常碰到有人问我有关窗口创建的问题,他们经常把用
HWND
描述的系统窗口对象和用CWnd描述的MFC的窗口对象混淆不清。
·
2015-11-10 21:41
mfc
SetTimer的使用问题
SetTimer的函数原型如下:UINT_PTR SetTimer(
HWND
hWnd
, UINT_PTR nIDEvent, UINT uElapse, TIMERPROC lpTimerFunc
·
2015-11-10 21:17
timer
设置分组框控件
#include LRESULT CALLBACK WndProc(
HWND
, UINT, WPARAM, LPARAM); HINSTANCE hInst; /* The 'main'
努力喵
·
2015-11-10 02:00
单选按钮和复选按钮
#include LRESULT CALLBACK WndProc(
HWND
, UINT, WPARAM, LPARAM); HINSTANCE hInst; /* The 'main'
努力喵
·
2015-11-10 01:00
设置static控件背景颜色、控件字体的背景颜色和控件字体的颜色
#include LRESULT CALLBACK WndProc(
HWND
, UINT, WPARAM, LPARAM); HINSTANCE hInst; /* The 'main' function
努力喵
·
2015-11-09 23:00
黑客帝国之酷炫屏保数字雨
include#defineID_TIMER1#defineSTRMAXLEN25//一个显示列的最大长度#defineSTRMINLEN8//一个显示列的最小长度LRESULTCALLBACKWndProc(
HWND
VictorTiper
·
2015-11-09 22:28
黑客
api
windows
C++
API
黑客帝国之酷炫屏保数字雨
defineID_TIMER1 #defineSTRMAXLEN25//一个显示列的最大长度 #defineSTRMINLEN8//一个显示列的最小长度 LRESULTCALLBACKWndProc(
HWND
VCCTor
·
2015-11-09 22:00
windows
api
黑客
深入浅出Win32的计时器
还是回归主题吧 Win32的计时器其实就是用以下两个函数控制的一个控件: 设置计时器 UINT_PTR SetTimer(
HWND
·
2015-11-09 14:55
Win32
windows程序设计读书笔记2——字符显示1
WINVER 0x0500 #include <windows.h> #include "sysmets.h" LRESULT CALLBACK WndProc (
HWND
·
2015-11-09 13:50
windows
windows程序设计读书笔记1——创建窗口
第一个win32程序,简单的创建窗口: #include <windows.h> LRESULT CALLBACK WndProc (
HWND
, UINT, WPARAM, LPARAM
·
2015-11-09 13:49
windows
VC中窗口ID,句柄,指针三者相互转换函数
ID--HANDLE--
HWND
三者之间的互相转换id->句柄
hWnd
= ::GetDlgItem(hParentWnd
·
2015-11-09 13:34
函数
在vc中怎么调用exe文件并传递参数
1.调用SHELL HINSTANCE ShellExecute(
HWND
hwnd
, LPCTSTR lpOperation, LPCTSTR
·
2015-11-09 13:32
传递参数
vb将窗体中的控件或某种颜色透明
Public Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal
hwnd
·
2015-11-09 13:44
vb
【搜集整理】Win7下 directshow 窗口模式退出全屏后黑屏
HRESULT PlayVideo::PutFullScreen(
HWND
ghApp){ HRESULT hr=S_OK; if (!
·
2015-11-09 12:14
win7
CListCtrl使用方法
1.设置列表风格 //设置列表风格 LONG styles; styles = GetWindowLong(m_list.m_
hWnd
,GWL_STYLE); styles &= ~LVS_TYPEMASK
·
2015-11-09 12:57
list
VC++ 把窗口带到最前
//
HWND
hw; //::SetFocus(hw); //::SetActiveWindow(hw); //::SetForegroundWindow
·
2015-11-09 12:38
vc++
Inno setup卸载前退出进程、删除文件夹
[Code]function InitializeUninstall(): Boolean; var MainRun:
HWND
; var MVRun:
HWND
; begin// FindWindowByWindowName
·
2015-11-09 12:47
Inno Setup
创建编辑框控件
#include LRESULT CALLBACK WndProc(
HWND
, UINT, WPARAM, LPARAM); HINSTANCE hInst; /* The 'main' function
努力喵
·
2015-11-09 00:00
捕获按钮点击事件
#include LRESULT CALLBACK WndProc(
HWND
, UINT, WPARAM, LPARAM); HINSTANCE hInst; /* The 'main' function
努力喵
·
2015-11-08 23:00
创建控件按钮
#include LRESULT CALLBACK WndProc(
HWND
, UINT, WPARAM, LPARAM); HINSTANCE hInst; /* The 'main' function
努力喵
·
2015-11-08 22:00
创建控件字体
#include LRESULT CALLBACK WndProc(
HWND
, UINT, WPARAM, LPARAM); HINSTANCE hInst; /* The 'main' function
努力喵
·
2015-11-08 22:00
MFC之MessageBox用法
一 函数原型及参数 function MessageBox(
hWnd
:
HWND
; Text, Caption: PChar; Type: Word): Integer
·
2015-11-08 16:30
message
C++:MessageBox的常见用法
一 函数原型及参数 function MessageBox(
hWnd
:
HWND
; Text, Caption: PChar; Type: Word): Integer
·
2015-11-08 16:59
message
Delphi中,让程序只运行一次的方法
Forms,Windows,SysUtils, Dialogs, Unit1 in 'Unit1.pas' {Form1}; {$R *.res}varmyMutex:
HWND
·
2015-11-08 16:47
Delphi
将窗口置顶的方法:SetWindowPos、AttachThreadInput、SwitchToThisWindow
neil_danky/item/f9dca0ca36a79811515058d3 方法一: 使用定时器,然后在定时器响应函数中定时调用,SetWindowPos()函数,第一个参数写
HWND
_TO
·
2015-11-08 16:18
thread
VC++ SetLayeredWindowAttributes 部分窗口透明鼠标穿透
在初始化中使用下面两行代码 ModifyStyleEx(0, WS_EX_LAYERED); ::SetLayeredWindowAttributes(m_
hWnd
, RGB(1, 255, 0),
·
2015-11-08 16:17
attribute
上一页
26
27
28
29
30
31
32
33
下一页
按字母分类:
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
其他