搜索资源列表
透明窗口SetWindowLong
- 本程序通过调用user32.dll中的系统函数 SetWindowLong(this->GetSafeHwnd(),GWL_EXSTYLE, GetWindowLong(this->GetSafeHwnd(),GWL_EXSTYLE)^0x80000) 完成对窗口半透明的处理-this program by calling user32.dll the system function SetWindo
autorunshutdown
- 一、可以自动运行选中的程序和自动关机,设定时间按秒为单位。运用到WIN2K关机需要权限获取,和一些简单的文件查找代码! 升级版增加了自动运行个数 可以最多运行10个任务,可以删除任务,开机自动运行,全局快捷键。 运用到SETTIMER HOOK REG等相关知识。比如 SetWindowsHookEx RegOpenKey RegQueryValueEx GetWindowLong 等函数。 二、关键代码请
notview
- 文件视图,Cfr a meWnd C Static CRect MoveWindow CreatePen CSize CDC SetBkMode SelectObject CPen LineTo SetTextColor CString TextOut CFont CreateFont DrawText CreateDC GetDeviceCaps DeleteDC GetObject GlobalAlloc GlobalLock Ge
j_9213_hotel
- SetCursor CWnd LoadCursor DestroyWindow CDialog GetClientRect C Button GetStockObject CFont GetWindowLong SetWindowLong GetWindowRect BeginDeferWindowPos EnableWindow DeferWindowPos EndDeferWindowPos InvalidateRect Updat
window_Cwnd
- 实现窗口透明 只需在创建窗口函数中加入 SetWindowLong(this->GetSafeHwnd(),GWL_EXSTYLE, GetWindowLong(this->GetSafeHwnd(),GWL_EXSTYLE)^0x80000) HINSTANCE hInst = LoadLibrary(\"User32.DLL\") if(hInst) { typedef
透明窗口SetWindowLong
- 本程序通过调用user32.dll中的系统函数 SetWindowLong(this->GetSafeHwnd(),GWL_EXSTYLE, GetWindowLong(this->GetSafeHwnd(),GWL_EXSTYLE)^0x80000) 完成对窗口半透明的处理-this program by calling user32.dll the system function SetWindo
autorunshutdown
- 一、可以自动运行选中的程序和自动关机,设定时间按秒为单位。运用到WIN2K关机需要权限获取,和一些简单的文件查找代码! 升级版增加了自动运行个数 可以最多运行10个任务,可以删除任务,开机自动运行,全局快捷键。 运用到SETTIMER HOOK REG等相关知识。比如 SetWindowsHookEx RegOpenKey RegQueryValueEx GetWindowLong 等函数。 二、关键代码请
notview
- 文件视图,Cfr a meWnd C Static CRect MoveWindow CreatePen CSize CDC SetBkMode SelectObject CPen LineTo SetTextColor CString TextOut CFont CreateFont DrawText CreateDC GetDeviceCaps DeleteDC GetObject GlobalAlloc GlobalLock Ge
j_9213_hotel
- SetCursor CWnd LoadCursor DestroyWindow CDialog GetClientRect C Button GetStockObject CFont GetWindowLong SetWindowLong GetWindowRect BeginDeferWindowPos EnableWindow DeferWindowPos EndDeferWindowPos InvalidateRect Updat
window_Cwnd
- 实现窗口透明 只需在创建窗口函数中加入 SetWindowLong(this->GetSafeHwnd(),GWL_EXSTYLE, GetWindowLong(this->GetSafeHwnd(),GWL_EXSTYLE)^0x80000) HINSTANCE hInst = LoadLibrary("User32.DLL") if(hInst) { typedef BO
wepmeter_LQ
- 曾经以为获取一个窗口的窗口过程很简单,不就是GetWindowLong一下吗,看spyxx获取的多么顺利。后来才发现原来不是这么简单。获取本进程内窗口的窗口过程确实很简单 ,直接调用GetWindowLong(hWnd,GWL_WNDPROC)就可以了(注意,根据窗口是否是Unicode的,你要判断是调用GetWindowLongA,还是GetWindowLongW,可以用IsWindowUnicode来判断), 但是GetWindow
allwindows
- 在此我定义了一个过程EnumWindowsProc,通过GetWindowLong来完成对打开程序窗口的枚举;通过ListBox实现程序的列举;并将每次调用的枚举结果存放在/info目录下当天日期为文件名称的.txt文件里;-I defined a process EnumWindowsProc, through GetWindowLong to completion of the open window enumeration Li
0000
- 窗口处理技巧大全 Vb提供了API函数SetWindowLong和GetWindowLong,可以让我们很容易取得对窗口的操作;通过对窗口属性的操作,可以更改窗口的显示风格。有些看来是正常情况下无法实现的窗口,现在你可以很容易的实现。只要你想到,更多希奇古怪的你也能做到。-Window processing techniques to provide the API Book Vb and SetWindowLong funct
GetRemoteWndProcInWindows
- 获取本进程内窗口的窗口过程确实很简单 ,直接调用GetWindowLong(hWnd,GWL_WNDPROC)就可以了(注意,根据窗口是否是Unicode的,你要判断是调用GetWindowLongA,还是GetWindowLongW,可以用IsWindowUnicode来判断), 但是GetWindowLong这个函数内部会检查调用进程和该窗口句柄是否属于同一进程,如果不是,就简单的返回0了。 -Within the proces
PZ
- PZ.InplaceAddItem( 提取现金 ) //增加常用摘要,实务中一般从摘要库文本文本中导入 PZ.InplaceAddItem( 支付工资 ) PZ.InplaceAddItem( 支付差旅费 ) PZ.InplaceAddItem( 收货款 ) PZ.InplaceAddItem( 购买原材料 ) PZ.InplaceAddItem( 销售产品 ) PZ.collapse //
allwindows
- 自己编写一个用VC++枚举当前所有打开的程序窗口,其原理是利用GetWindowLong(hWnd,GWL_STYLE)& WS_VISIBLE对打开的窗口进行查找-I have written a VC++ enum with all the current open window, the principle is to use GetWindowLong (hWnd, GWL_STYLE) & WS_VISIBLE to
wordpad
- 写字板WinCE 上面开发的写字板,可以实现Windows上开发板的基本功能-wordpad CWnd CDialog CDataExchange MessageBeep EndDialog Cfr a meWnd SendMessage LoadString lstrlen lstrcpy CWinApp CString CCommandLineInfo CSingleDocTemplate ShowWindow UpdateWind
allwindows
- 枚举当前所有打开的程序窗口,其原理是利用GetWindowLong(hWnd,GWL_STYLE)& WS_VISIBLE对打开的窗口进行查找,并将窗口的句柄存放在一个HWND的数组中,结合EnumWindows进行窗口的枚举,从而得到响应的窗口名称;通过定义了一个过程EnumWindowsProc,通过GetWindowLong来完成对打开程序窗口的枚举;通过ListBox实现程序的列举;并将每次调用的枚举结果存放在/info目录下当
allwindows
- 利用GetWindowLong(hWnd,GWL_STYLE)& WS_VISIBLE对打开的窗口进行查找,并将窗口的句柄存放在一个HWND的数组中,结合EnumWindows进行窗口的枚举,从而得到响应的窗口名称; 利用GetWindowLong(hWnd,GWL_STYLE)& WS_VISIBLE对打开的窗口进行查找,并将窗口的句柄存放在一个HWND的数组中,结合EnumWindows进行窗口的枚举,从而得到响应的窗口名称;-
cwndExtra
- 如何设置窗口的额外字节等内容,setwindowlong,getwindowlong-How to set the window extra bytes, etc.