您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 贪吃蛇源码VC6.0

  2. 帮助新手学习,用的多线程控制.资源图标头文件,自己去掉,还有WndClass类的图标也去掉.
  3. 所属分类:C++

    • 发布日期:2009-06-16
    • 文件大小:1mb
    • 提供者:wx7864566
  1. C++编程实例详解C++

  2. C++编程实例详解C++ #include //窗口对象的过程处理函数 LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM); //Windows应用程序的主函数 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE, PSTR lpszCmdLine, int iCmdShow) { //定义窗口类 TCHAR tcClassName[] = TEXT("My Window "); //窗口类名
  3. 所属分类:C++

    • 发布日期:2009-08-11
    • 文件大小:14mb
    • 提供者:wangking486
  1. 小程序关闭不想要的窗口

  2. Program haha; Uses Windows, Messages, shellapi; // {$R *.res} Const AppName: PChar = 'haha'; Var prosid: dword; closehd,hCurrentWindow: hwnd; Hk: HKEY ; WndText:array[0..25] of char; function GetKJWnd(): hwnd; begin hCurrentWindow:=GetForegroundWin
  3. 所属分类:其它

    • 发布日期:2009-10-08
    • 文件大小:2kb
    • 提供者:nxynwywg
  1. opengl画图程序附带源代码

  2. #include // Header File For Windows #include // Header File For The OpenGL32 Library #include // Header File For The GLu32 Library #include // Header File For The Glaux Library #include HDC hDC=NULL; // Private GDI Device Context HGLRC hRC=NULL
  3. 所属分类:C

    • 发布日期:2009-12-22
    • 文件大小:1mb
    • 提供者:grett
  1. opengl画图程序4

  2. #include // Header File For Windows #include // Header File For The OpenGL32 Library #include // Header File For The GLu32 Library #include // Header File For The Glaux Library #include HDC hDC=NULL; // Private GDI Device Context HGLRC hRC=NULL
  3. 所属分类:C

    • 发布日期:2009-12-22
    • 文件大小:22kb
    • 提供者:grett
  1. delphi7小技巧

  2. delphi7小技巧 一、隐藏任务栏 在WINDOWS中,系统的任务栏本质上也是一个窗口,其窗口类名为Shell_TrayWnd"。要实现对它的操作,可通过API函数FindWindow和ShowWindow来达到目的。 var wndHandle:THandle; wndClass:Array[0..50] of char; begin StrPCopy(@wndClass[0],'Shell_TrayWnd'); wndHandle:=FindWindow(@wndClass[0],nil
  3. 所属分类:Delphi

    • 发布日期:2010-02-26
    • 文件大小:12kb
    • 提供者:xybl255
  1. 窗口类分析 WNDCLASSEX

  2. window系统提供了三种类型的窗口类 系统全局类(System global classes) 应用程序全局类(Application global classes) 应用程序局部类(Application local classes)
  3. 所属分类:其它

    • 发布日期:2010-04-17
    • 文件大小:222kb
    • 提供者:jd_wh
  1. 3D魔方 C++代码

  2. 部分代码: // FScreen.c // OpenGL SuperBible, Chapter 17 // Program by Richard S. Wright Jr. // This program shows a how to create a full screen // window and render into it with OpenGL. #include #include #include #include #include #include #includ
  3. 所属分类:C++

    • 发布日期:2010-04-18
    • 文件大小:23kb
    • 提供者:lovec001
  1. 用API编写简单的Windows程序

  2. (1) 建立工程的类型(Win32 Application)及需要包含的头文件(Windows.h) (2) WinMain函数的使用(Win32下程序的入口) (3) 完成Windows窗口产生的四个步骤: A.设计窗口类,即WNDCLASS结构体的填充, 其中注意窗口 函数的指定和类名的命名 B.注册窗口类,即RegisterClass(…) 函数的使用 C.创建窗口,即CreateWindow(…) 函数的使用 D.显示及更新窗口,即ShowWindow(…) 及UpdateWindow
  3. 所属分类:C

    • 发布日期:2010-04-30
    • 文件大小:29kb
    • 提供者:zxc12345678zxc
  1. C++面向对象与可视化教程

  2. #include #include #include #include LRESULT CALLBACK WndProc(HWND,UINT,WPARAM,LPARAM); int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInst,LPSTR lpszCmdLine,int nCmdShow) { HWND hwnd; MSG Msg; WNDCLASS wndclass; char lpszClassName[] = "基本
  3. 所属分类:C++

    • 发布日期:2010-07-03
    • 文件大小:3mb
    • 提供者:kadesun
  1. 仿windows关机功能界面

  2. 转载同事的测试例子,也许大家可以看看 // MyFade.cpp : implementation file // #include "stdafx.h" #include "MyFade.h" #pragma warning(disable: 4201) #include #pragma comment(lib,"winmm.lib") #pragma warning(default: 4201) #ifdef _DEBUG #define new DEBUG_NEW #undef THI
  3. 所属分类:VB

    • 发布日期:2010-09-29
    • 文件大小:268kb
    • 提供者:mentation
  1. 贪吃蛇 GAME 源码 vc++6.0编译

  2. #include #include #define SIZE 10 POINT point[21],preposition,aimposition; int head,rear,direction,lenght; LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ; int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, in
  3. 所属分类:C++

    • 发布日期:2010-11-16
    • 文件大小:1mb
    • 提供者:fhxy_xzw
  1. windows CE的计算机

  2. 基于windows CE的计算机程序 //-------------------------主函数------------------------ int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPWSTR lpCmdLine, int nCmdShow ) { // TODO: Place code here. HWND hWnd; MSG Message; WNDCLASS WndClass; TCHAR
  3. 所属分类:其它

    • 发布日期:2010-11-24
    • 文件大小:83kb
    • 提供者:fly201314
  1. gertt点阵图读取器(opengl)

  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. * Visit My Site At nehe.gamedev.net */
  3. 所属分类:C#

    • 发布日期:2010-11-29
    • 文件大小:1mb
    • 提供者:grett
  1. eclipse swt包

  2. 包中包括的类有:org.eclipse.swt.SWT.class org.eclipse.swt.SWTError.class org.eclipse.swt.SWTException.class org.eclipse.swt.accessibility.ACC.class org.eclipse.swt.accessibility.Accessible.class org.eclipse.swt.accessibility.AccessibleAdapter.class org.ecli
  3. 所属分类:Java

    • 发布日期:2011-03-13
    • 文件大小:1mb
    • 提供者:leaf302
  1. 显示一条滚动显示的正弦曲线

  2. 描绘一条向左边滚动显示的正弦曲线! #include #include #define ID_TIMER 1 #define NUM 1000 #define STEP 10 #define TWOPI (2 * 3.14159) LRESULT CALLBACK WndProc (HWND, UINT, WPARAM, LPARAM) ; int WINAPI WinMain ( HINSTANCE hInstance, HINSTANCE hPrevInstance,PSTR szCm
  3. 所属分类:C/C++

    • 发布日期:2011-09-02
    • 文件大小:3kb
    • 提供者:jack18943
  1. MFC实验报告

  2. 编写一个如示例WinMain的Windows应用程序,其中窗口的背景色、光标、图标等属性可以设置成自己喜欢的风格。作为该示例的扩展,要求编程实现当在该窗口中单击右键时,播放一曲自己喜欢的音乐。(4学时) 编写一个如示例ExDlgCtl的MFC对话框应用程序,其中必须实现的功能包括: “对话框”菜单下的模态对话框、非模态对话框和文件对话框; “控件”菜单下的计算器、动态创建按钮、上网问卷调查、调整对话框背景色等四个对话框。 示例中的其它功能可以根据实际情况决定是否编写。(4学时) 3)编写一个如
  3. 所属分类:C/C++

    • 发布日期:2012-02-27
    • 文件大小:9mb
    • 提供者:neu_caoyuan
  1. WNDCLASS中的style 定义

  2. WNDCLASS中的style 定义
  3. 所属分类:C++

    • 发布日期:2014-01-13
    • 文件大小:1kb
    • 提供者:jyjd001
  1. 深入解析C++的WNDCLASS结构体及其在Windows中的应用

  2. 主要介绍了C++的WNDCLASS结构体及其在Windows中的应用,WNDCLASS被用来定义窗口,文中介绍了其诸多属性,需要的朋友可以参考下
  3. 所属分类:其它

    • 发布日期:2020-09-02
    • 文件大小:94kb
    • 提供者:weixin_38651450
  1. 深入解析C++的WNDCLASS结构体及其在Windows中的应用

  2. WNDCLASS是一个由系统支持的结构,用来储存某一类窗口的信息,如ClassStyle,消息处理函数,Icon,Cursor,背景Brush等。也就是说,CreateWindow只是将某个WNDCLASS定义的窗体变成实例。要得到某一窗口的WNDCLASS数据,可以用GetClassLong();   RegisterClass()就是在系统注册某一类型的窗体。也就是将你提供的WNDCLASS数据注册为一个窗口类,在WNDCLASS.lpszClassName中定义该WNDCLASS的标识,无
  3. 所属分类:其它

    • 发布日期:2021-01-20
    • 文件大小:98kb
    • 提供者:weixin_38683895
« 12 3 »