CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - hwnd

搜索资源列表

  1. MultiMedia

    0下载:
  2. 功能强大的多媒体播放器,可以和WindowsMediaplayer控件蓖美.可以在任何具有hwnd的控件上播放视频.绝对纯VB6代码编写.-Powerful multimedia player, you can grate the United States and WindowsMediaplayer control. Can control any of the hwnd to play video. Absolutely pure preparation of VB6 code.
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-04-02
    • 文件大小:76589
    • 提供者:481
  1. Unit5

    0下载:
  2. // Get device interface info set handle for all devices attached to system HDEVINFO hDevInfo = SetupDiGetClassDevs( &GUID_DEVINTERFACE_USB_DEVICE, /* CONST GUID * ClassGuid - USB class GUID */ NULL, /* PCTSTR Enumerator */ NULL, /* HWND
  3. 所属分类:software engineering

    • 发布日期:2017-03-25
    • 文件大小:2382
    • 提供者:amarsoft
  1. API_Spyer

    0下载:
  2. The API Spyer tracks any window that the mouse is over, giving info such as the window handle (hWnd), its class name, its text, etc. This program also allows you to change the text of a window, get its hDC and Window Rect, and change its enabled and
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-31
    • 文件大小:6783
    • 提供者:coder0101
  1. EnableWindow

    0下载:
  2. 仅供学习,杜绝破解 『激活窗口』:包括按钮、部分菜单等等,代码简单、用途广泛。。。 用Microsoft Spy找到需要激活的窗口hWnd,填入Form1中hwnd文本框,点击Enable 就这么简单 其他功能参加源码-For learning, put an end to crack the window 』『 activation: including the button, part of the menu and so on, the code i
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-06
    • 文件大小:6868
    • 提供者:goldlion
  1. NeHeOpenGL

    0下载:
  2. NEHE教程所有源码,对学习OpenGL的初学者有很大的帮助。-#include <windows.h> // Header File For Windows #include <gl\gl.h> // Header File For The OpenGL32 Library #include <gl\glu.h> // Header File For The GLu32 Library #include <gl\glaux.h&g
  3. 所属分类:OpenGL program

    • 发布日期:2017-05-29
    • 文件大小:11926003
    • 提供者:任龙
  1. Wnd

    0下载:
  2. Small and handy hWnd wrapper. Implements simple class CWindow allowing create new window
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:1651
    • 提供者:brain-ripper
  1. Win32APIandPB

    0下载:
  2. 1. 如何使PB窗口总在最上层 通过SetWindowPos函数吧窗口的显示层次修改为HWND_TOPMOST,就可以使指定窗 口永远不会被其他窗口覆盖,该函数声明为: Function Long SetWindowPos(Long hwnd, Long ord, Long x, Long y, Long dx, Long dy, Long uflag) Library “user32.dll” 参数1为要顶层显示的窗口句柄,参数2指定显示的层次,参数7为附加选项,其余
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:2545
    • 提供者:杨四
  1. spy

    0下载:
  2. 工具:spy++,WindowSpy 涉及到的API:findwindow 补充: printf是一个向控制台输出的函数。 d代表输出的是个整数。hwnd代表需要输出的变量。 大家也可以使用findwindow(NULL,"SPY++.txt - 记事本")来替换试试。就是将类名置空,只使用标题名。 -Commonly used digital image processing techniques- stretching algorithm for cases
  3. 所属分类:Game Hook Crack

    • 发布日期:2017-04-16
    • 文件大小:180049
    • 提供者:jeffchang
  1. code

    0下载:
  2. 循环 1,窗口置前 2,模拟TAB键(需要等待sleep) 3,模拟1键普通攻击 4,攻击等待(1000毫秒) //这里是上节课的模拟按键打怪的代码 HWND hwnd hwnd=::FindWindow(NULL,"Element Client") //窗口置前 ::ShowWindow(hwnd,SW_RESTORE) ::SetForegroundWindow(hwnd) //模拟1这个按键。
  3. 所属分类:Game Hook Crack

    • 发布日期:2017-04-10
    • 文件大小:1872675
    • 提供者:jeffchang
  1. ExportFromMapObject

    0下载:
  2. ExportFromMapObject Public Declare Function GetDeviceCaps Lib "gdi32" (ByVal hdc As Long, ByVal nIndex As Long) As Long Public Declare Function GetDC Lib "user32" (ByVal hwnd As Long) As Long Public Declare Function ReleaseDC Lib "user32" (ByVal
  3. 所属分类:GIS program

    • 发布日期:2017-03-25
    • 文件大小:3337
    • 提供者:thom
  1. hwnd

    0下载:
  2. 一个简单的窗口创建程序,是一个框架程序。-how to create a window using vc++
  3. 所属分类:Dialog_Window

    • 发布日期:2017-04-05
    • 文件大小:931
    • 提供者:小南
  1. cwnd_point

    0下载:
  2. 通过HWND获得CWND指针的小例子,可以编译通过-HWND pointer obtained through the CWND small example, you can compile
  3. 所属分类:matlab

    • 发布日期:2017-04-06
    • 文件大小:16807
    • 提供者:yaya
  1. GetRemoteWndProcInWindows

    0下载:
  2. 获取本进程内窗口的窗口过程确实很简单 ,直接调用GetWindowLong(hWnd,GWL_WNDPROC)就可以了(注意,根据窗口是否是Unicode的,你要判断是调用GetWindowLongA,还是GetWindowLongW,可以用IsWindowUnicode来判断), 但是GetWindowLong这个函数内部会检查调用进程和该窗口句柄是否属于同一进程,如果不是,就简单的返回0了。 -Within the process window for the window proced
  3. 所属分类:Windows Develop

    • 发布日期:2017-05-09
    • 文件大小:1766980
    • 提供者:陈程
  1. flashscreen

    0下载:
  2. 闪烁窗口, FLASHWINFO fwi fwi.cbSize= sizeof(FLASHWINFO) fwi.hwnd= this->Handle fwi.uCount= 100 fwi.dwFlags= FLASHW_STOP fwi.dwTimeout= 0 FlashWindowEx(&fwi) -Flashing window, FLASHWINFO fwi fwi.cbSize = sizeof (FLASHWINFO)
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-03-27
    • 文件大小:13399
    • 提供者:yaozeqin
  1. mdlTopMost

    0下载:
  2. keep the windows that you set up to be top most all the time copy the code to a module and insert this line into your form_load fucntion dim setTopMostWindow as long SetTopMostWindow = SetWindowPos(Me.hwnd, -1, 0, 0, 0, 0, 2 Or 1)
  3. 所属分类:.net

    • 发布日期:2017-04-06
    • 文件大小:122834
    • 提供者:hqjq
  1. 2008-10-02_BitmapFunction

    0下载:
  2. A Bitmap Class for Load Image and show on the HWND
  3. 所属分类:Multimedia program

    • 发布日期:2017-04-16
    • 文件大小:48301
    • 提供者:Figer
  1. hWndHider

    0下载:
  2. I made this to hide programs/windows that were currently open when my parents walked in. It has memory so you just press F6 to hide everything you have selected. Very useful for quickly hiding things. There will be a new version coming out soon, w
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:7219
    • 提供者:d3graph
  1. 20081122322264

    0下载:
  2. 这是一个窗口编程助手,它的一些功能包括hWnd扫描、代码生成、窗口查找、隐藏多个窗口等等,是VBC++窗口编程的好助手 -This is a window of programming assistant, some of its features include hWnd scanning, code generation, the window to find, hide multiple windows and so on, is the VBC++ Windows programming
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-04
    • 文件大小:25806
    • 提供者:hxwcool
  1. VC_Programming_get_HWND_CWnd_pointer_example_code.

    0下载:
  2. VC编程实现如何通过HWND获得CWnd指针实例代码VC Programming how to get HWND CWnd pointer example code-VC Programming how to get HWND CWnd pointer example code
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-06
    • 文件大小:18614
    • 提供者:wdoor
  1. Hook-registry-monitor

    0下载:
  2. DLL 动态库,主要 用Hook 对注册表的指定项 进行动态的监控,参数由自己输入,- extern "C" __declspec(dllexport) BOOL InstallHook(HWND handle) { hhook = ::SetWindowsHookEx(WH_SHELL, MyShellProc, GetModuleHandle("Hook.dll"), 0) hWnd = handle RegMonPID = GetCurrentProce
  3. 所属分类:Hook api

    • 发布日期:2017-03-31
    • 文件大小:86632
    • 提供者:oracle
« 1 2 3 45 6 7 8 »
搜珍网 www.dssz.com