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

搜索资源列表

  1. BdbPlayCap

    0下载:
  2. 这个程序是 DirectX SDK 里面的 PlayCap 转成 C++ Builder 版本的源程序(显示摄像头的视频画面)。 编译环境:  C++ Builder 6.0  DirectX 9 SDK for C++ Builder. 以下为编写 DirectX 程序所必需的设定: 工程文件参数设定:选菜单 Project → Options 在 Directories / Conditionals 选项页面里面:  1. Include pat
  3. 所属分类:多媒体

    • 发布日期:2008-10-13
    • 文件大小:203.46kb
    • 提供者:lanxin
  1. toolbar

    0下载:
  2. I made a lot of changed on this object,such as * // 1.Encapsulates all code in one userobjet,since PB does not * // support \"Address of Function\" , so we can not set new * // WndProc, just makes the object more easy to use. * /
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:71.48kb
    • 提供者:双职工
  1. cppbuilderdvp

    0下载:
  2. c++builder开发指南程序包括com+,thread,web设计,WndProc等
  3. 所属分类:ActiveX/DCOM

    • 发布日期:2008-10-13
    • 文件大小:10.38mb
    • 提供者:mark914a1
  1. MyTreeView

    0下载:
  2. If you set an item s height to greater than 24 pixels, the value is automatically reduced to 24 pixels before being processed. To bypass this limitation, you can override the TreeView class and the WndProc method, and then modify the parameters of th
  3. 所属分类:TreeView

    • 发布日期:2017-03-28
    • 文件大小:916byte
    • 提供者:
  1. test

    0下载:
  2. #include "windows.h" #include "stdlib.h" #include "string.h" long WINAPI WndProc(HWND hWnd,UINT iMessage,UINT wParam,LONG lParam)
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-11
    • 文件大小:1007byte
    • 提供者:dan
  1. WndProc

    0下载:
  2. 用C++ Builder编写的操作系统处理程序,经过测试,能用-C++ Builder with the preparation process of the operating system, after testing, can be
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:3.17kb
    • 提供者:bunny
  1. wujiaoxing

    0下载:
  2. 用API函数编写一个五角星,五条线相接,并且填充不同颜色-long WINAPI WndProc(HWND hWnd,UINT iMessage, UINT wParam,LONG lParam) BOOL InitWindowsClass(HINSTANCE hInstance) BOOL InitWindows(HINSTANCE hInstance,int nCmdShow) int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE
  3. 所属分类:Graph Recognize

    • 发布日期:2017-03-28
    • 文件大小:969byte
    • 提供者:gaoying
  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
    • 文件大小:11.37mb
    • 提供者:任龙
  1. move_window

    0下载:
  2. 窗体移动的代码,有两种方式,一种使用传统的e参数传递来移动,另外一种使用重写wndproc()的方法来移动窗体。-Form moving code, there are two ways, one using the traditional e parameter to move, another way to use overwrite wndproc () method to move the form.
  3. 所属分类:CSharp

    • 发布日期:2017-05-11
    • 文件大小:2.9mb
    • 提供者:小黄
  1. hook

    0下载:
  2. hook function procedure HookWindow(hWnd: HWND) var Item: PItem begin if FindWindowProc(hWnd, HandleList) = nil then begin GetMem(Item,Sizeof(TItem)) Item.hWnd:= hWnd Item.Next:= HandleList Item.WndProc:= Pointer(Set
  3. 所属分类:Delphi VCL

    • 发布日期:2017-04-01
    • 文件大小:8.96kb
    • 提供者:xax2
  1. list

    0下载:
  2. Provide a Horizontal Scroll Event for a Listbox Subclassing a listbox allows you to monitor horizontal scrolling. To subclass a listbox, you store the original WndProc in the UserData area of the listbox, allowing a single replacement of WndProc to
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:691byte
    • 提供者:beto
  1. WINDOWS_DLL_program

    0下载:
  2. windows 核心编程之动态链接库部分。 当调用下面所示的SetWindowsLongPtr函数,建立一个窗口的子类时,你告诉系统,发送到或者显示在hwnd设定的窗口中的所有消息都应该送往MySubclassProc,而不是送往窗口的正常窗口过程: SetWindowLongPtr(hwnd, GWLP_WNDPROC, MySubclassProc) 换句话说,当系统需要将消息发送到指定窗口的WndProc时,要查看它的地址,然后直接调用WndProc。在本例中,系
  3. 所属分类:software engineering

    • 发布日期:2017-11-23
    • 文件大小:595.45kb
    • 提供者:rosex
  1. game2

    0下载:
  2. 小游戏。因为是初学者,所做的东西还不能算是厉害的,只能说正在努力的过程-#include<windows.h> #include"resource.h" #include<stdio.h> LRESULT CALLBACK WndProc(HWND hwnd,UINT uMSG, WPARAM wParam,LPARAM lParam) void DrawBitmap(HDC hdc,UINT ID, int x,int y,HWND hwnd)
  3. 所属分类:Other Riddle games

    • 发布日期:2017-04-03
    • 文件大小:685.77kb
    • 提供者:xujialuo
  1. MdiApp

    0下载:
  2. LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) LRESULT CALLBACK MDIChildWndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) char g_szAppName[] = "MyMDIWindow" char g_szChild[] = "MyMDIC
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-05
    • 文件大小:4.74kb
    • 提供者:wangb
  1. CustomCtrl1

    0下载:
  2. 对已建立的控件进(实例)行子类化 MiniGUI 的控件就是一类特殊的子窗口,所以它们也有自己的过程处理函数 typedef int (* WNDPROC) (HWND, int, WPARAM, LPARAM) 。这种方式的实现其实就是替换掉已经创建了的控件原来的过程出来函数。这个函数其实是每个控件结构体变量里一个函数指针所指向的。通过函数指针指向不同的处理函数就能实现控件的不同功能已经不同的属性。再配合上每个控件的实例数据(后面再说这个东东),是不是有点像面向对象的感觉了呢 ^_^。 -
  3. 所属分类:Other Embeded program

    • 发布日期:2017-04-06
    • 文件大小:28.37kb
    • 提供者:张立志
  1. WndProc-Fuction

    0下载:
  2. windows chuankou guocheng shuoming
  3. 所属分类:software engineering

    • 发布日期:2017-12-03
    • 文件大小:25.16kb
    • 提供者:shengronghui
  1. qw

    0下载:
  2. 函数: InitInstance(HINSTANCE, int) 目的: 保存实例句柄并创建主窗口 函数: WndProc(HWND, UINT, WPARAM, LPARAM) 目的: 处理主窗口的消息-Function: InitInstance (HINSTANCE, int) Objective: To save the instance handle and creates main window function: WndProc (HWND, UINT, WPARAM,
  3. 所属分类:Other systems

    • 发布日期:2017-12-04
    • 文件大小:1.87mb
    • 提供者:胡兆祥
  1. Lesson2

    0下载:
  2. 绘制出一个白色的正方形和一个白色的三角形。-/* * This Code Was Created By Jeff Molofee 2000 * A HUGE Thanks To Fredric Echols For Cleaning Up * And Optimizing The Base Code, Making It More Flexible! * If You ve Found This Code Useful, Please Let Me Know. *
  3. 所属分类:Other systems

    • 发布日期:2017-04-04
    • 文件大小:5.1kb
    • 提供者:hexuqing
  1. 11

    0下载:
  2. 绘制一个小的正方形,用键盘的上下左右键控制其进行相应的运动。-/* * This Code Was Created By Jeff Molofee 2000 * A HUGE Thanks To Fredric Echols For Cleaning Up * And Optimizing The Base Code, Making It More Flexible! * If You ve Found This Code Useful, Please Let Me Kn
  3. 所属分类:OpenGL program

    • 发布日期:2017-04-01
    • 文件大小:5.14kb
    • 提供者:hexuqing
  1. CatchIt

    0下载:
  2. PostMessage和SendMessage发出的消息在处理的时候在各级的情况。包括OnMessage、WndProc、Message Procedure和DefaultHandler。-How VCL do with PostMessage() and SendMessage() message. include OnMessage、WndProc、Message Procedure和DefaultHandler。
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-17
    • 文件大小:171.67kb
    • 提供者:lzy
« 12 »
搜珍网 www.dssz.com