Welcome![Sign In][Sign Up]
Location:
Search - CreateWindow

Search list

[assembly languagetestwin.zip

Description: 如何编写小于20K的Windows程序.演示如何使用:CreateWindow, CreateWindowEx, S endMessage and GetMessage TranslateMessage and DispatchMessage, CreateFont 演示如何使用API创建Windows窗口控件
Platform: | Size: 13126 | Author: | Hits:

[Exploitsharegem_deskpop

Description: 主要实现: 利用CREATEWINDOW建立与释放程序窗体。 WM消息队列循环。 向应用程序发送程序ICON。(否则生成的程序无图标类似DOS程序) 隐藏桌面程序。 在TRAY栏右键弹出退出,关于栏。 实现程序在DELPHI下无FORM的编写。 运用WINAPI一些技巧。-main : CREATEWINDOW establishment and release procedures Form. WM Message Queue cycle. Send applications to the procedures ICON. (Otherwise, the procedure generated no icon similar procedures DOS) Hide desktop procedures. TRAY column in the right-activated withdraw on the column. DELPHI achieve procedures under no FORM preparation. WINAPI use of certain skills.
Platform: | Size: 39473 | Author: 李顺 | Hits:

[Windows Developwin32controls

Description: 用纯粹的API来创建窗口控件及其控制 作者: hwc 此代码示范并解释了如何用纯粹的API创建窗口控件,如使用CreateWindow和 CreateWindowEx在窗口中创建列表框、编辑框和按钮。不仅告诉你如何创建它们,而且还示范了如何使用。此外,代码还示范了如何用TAB、Shift+Tab等来控制输入焦点以及快捷键。
Platform: | Size: 22388 | Author: 李桃 | Hits:

[Windows DevelopCreateWindow

Description: 自己编码实现创建窗口功能,简明表述mfc内部实现窗口创建的过程
Platform: | Size: 9126 | Author: 贾晓凯 | Hits:

[GDI-BitmapCodeGuruEssentialDifferencebetweenCONSOLEandGUIApp

Description: Environment: VC6 Win2K/NT/98 This sample describes the difference between CONSOLE and GUI applications with 20 lines of code. There are 2 small projects in this sample. The first project shows how to create a console in WinMain(). First of all, we need to allocate a console with AllocConsole() secondly, we in turn retrieve the operating system handle (GetStdHandle), run-time handle (_open_osfhandle), stream (_fdopen) and standard stream (stdout) finally, we can call functions like printf() and scanf(). The second project demonstrates how to create a window in main(). I created an edit box in a separate thread, so that you can control this window from the console. I retrieved the module handle through GetModuleHandle(), and then I called CreateWindow with the predefined class name EDIT. As you can see, there is not much essential difference between console and GUI applications, even though VC requires us to indicate the type of the application when you create a project.
Platform: | Size: 205738 | Author: 李峥 | Hits:

[assembly languagetestwin

Description: 如何编写小于20K的Windows程序.演示如何使用:CreateWindow, CreateWindowEx, S endMessage and GetMessage TranslateMessage and DispatchMessage, CreateFont 演示如何使用API创建Windows窗口控件- How compiles is smaller than the 20K Windows procedure How demonstrates uses: CreateWindow, CreateWindowEx, S endMessage and GetMessage TranslateMessage and DispatchMessage, how does CreateFont demonstrate uses API to found the Windows window to control
Platform: | Size: 13312 | Author: 刘豫晋 | Hits:

[Windows DevelopSDK 工具条,分割条,TREE 等控件演示代码

Description: SDK 工具条,分割条,TREE 等控件演示代码-SDK tools, segmentation, such as TREE Control Demonstration code
Platform: | Size: 51200 | Author: 高文涛 | Hits:

[Windows CECtrlView

Description: Wince.Net平台上使用标准API实现的控件界面,使用API实现了标准BUTTON、EDIT、RADIO控件的功能!-Wince.Net platform using standard API interface, the controls, Use of the standard API BUTTON, EDIT, Radio Control Function!
Platform: | Size: 1311744 | Author: 李军 | Hits:

[OS programsharegem_deskpop

Description: 主要实现: 利用CREATEWINDOW建立与释放程序窗体。 WM消息队列循环。 向应用程序发送程序ICON。(否则生成的程序无图标类似DOS程序) 隐藏桌面程序。 在TRAY栏右键弹出退出,关于栏。 实现程序在DELPHI下无FORM的编写。 运用WINAPI一些技巧。-main : CREATEWINDOW establishment and release procedures Form. WM Message Queue cycle. Send applications to the procedures ICON. (Otherwise, the procedure generated no icon similar procedures DOS) Hide desktop procedures. TRAY column in the right-activated withdraw on the column. DELPHI achieve procedures under no FORM preparation. WINAPI use of certain skills.
Platform: | Size: 38912 | Author: 李顺 | Hits:

[ComboBoxtax

Description: to use an ActiveX control in your Win32 Project without MFC with CreateWindowEx or in a dialog box-to use an ActiveX control in your Win32 Proj ect without MFC with CreateWindowEx or in a dial og box
Platform: | Size: 34816 | Author: ASD | Hits:

[Consolecreatewindows

Description: 用控制台简单的实现窗体的创建、窗体名创建,以及弹出对话框的使用-console with a simple realization of the creation of Form, Form creates, and the use of pop-up dialog box
Platform: | Size: 1938432 | Author: 李雪莉 | Hits:

[Windows Developwin32controls

Description: 用纯粹的API来创建窗口控件及其控制 作者: hwc 此代码示范并解释了如何用纯粹的API创建窗口控件,如使用CreateWindow和 CreateWindowEx在窗口中创建列表框、编辑框和按钮。不仅告诉你如何创建它们,而且还示范了如何使用。此外,代码还示范了如何用TAB、Shift+Tab等来控制输入焦点以及快捷键。-Using pure API to create window controls and its control Author: hwc this code model and explains how to use the API to create a purely window controls, such as the use of CreateWindow and CreateWindowEx to create the list in the window box, edit box and button. Not only tell you how to create them, but also demonstrated how to use. In addition, the code also demonstrated how to use TAB, Shift+ Tab to control the input focus, etc., as well as shortcuts.
Platform: | Size: 22528 | Author: 李桃 | Hits:

[Windows DevelopCreateWindow

Description: 自己编码实现创建窗口功能,简明表述mfc内部实现窗口创建的过程-Own code to achieve the creation of the window function, concise statements mfc window within the process of creating
Platform: | Size: 1940480 | Author: 贾晓凯 | Hits:

[GDI-BitmapCodeGuruEssentialDifferencebetweenCONSOLEandGUIApp

Description: Environment: VC6 Win2K/NT/98 This sample describes the difference between CONSOLE and GUI applications with 20 lines of code. There are 2 small projects in this sample. The first project shows how to create a console in WinMain(). First of all, we need to allocate a console with AllocConsole() secondly, we in turn retrieve the operating system handle (GetStdHandle), run-time handle (_open_osfhandle), stream (_fdopen) and standard stream (stdout) finally, we can call functions like printf() and scanf(). The second project demonstrates how to create a window in main(). I created an edit box in a separate thread, so that you can control this window from the console. I retrieved the module handle through GetModuleHandle(), and then I called CreateWindow with the predefined class name EDIT. As you can see, there is not much essential difference between console and GUI applications, even though VC requires us to indicate the type of the application when you create a project. -Environment: VC6 Win2K/NT/98 This sample describes the difference between CONSOLE and GUI applications with 20 lines of code. There are 2 small projects in this sample. The first project shows how to create a console in WinMain (). First of all , we need to allocate a console with AllocConsole () secondly, we in turn retrieve the operating system handle (GetStdHandle), run-time handle (_open_osfhandle), stream (_fdopen) and standard stream (stdout) finally, we can call functions like printf () and scanf (). The second project demonstrates how to create a window in main (). I created an edit box in a separate thread, so that you can control this window from the console. I retrieved the module handle through GetModuleHandle (), and then I called CreateWindow with the predefined class name EDIT. As you can see, there is not much essential difference between console and GUI applications, even though VC requires us to indicate the type of the application when you create a project.
Platform: | Size: 205824 | Author: 李峥 | Hits:

[VC/MFCMFCcontect

Description: 以传统的C/SDK 撰写Windows 程序,最大的好处是可以清楚看见整个程序的来龙去脉 和消息动向,然而这些重要的动线在MFC 应用程序中却隐晦不明,因为它们被Application Framework 包起来了。这一章主要目的除了解释MFC 应用程序的长像,也要从MFC 源代 码中检验出一个Windows 程序原本该有的程序进入点(WinMain)、视窗类别注册 (RegisterClass)、窗口产生(CreateWindow)、消息循环(Message Loop)、窗口函数 (WindowProcedure)等等动作,抽丝剥茧彻底了解一个MFC 程序的诞生与结束,以及生 命过程。-To the traditional C/SDK to write Windows program, the biggest benefit can be clearly seen are the ins and outs of the whole process and information trends, but these important line in the MFC application is obscure unknown, because they are Application Framework package up. The main purpose of this chapter to explain apart from MFC application is like a long, but also from the MFC source code to test a Windows program that some of the original program entry point [WinMain], register window class [RegisterClass], have a window [CreateWindow], news cycle [Message Loop], the window function [WindowProcedure] action and so on, leaving no stone unturned and thorough understanding of the birth of a MFC program with The End, as well as the life course.
Platform: | Size: 211968 | Author: c0n1ury | Hits:

[source in ebookCreatewindow

Description: 应用程序:Example 项目概述 === === === === === === === === === === === === 应用程序向导已为您创建了此 Example 应用程序。 本文件概要介绍组成 Example 应用程序的每个文件的内容。 Example.vcproj 这是使用应用程序向导生成的 VC++ 项目的主项目文件。 它包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的 平台、配置和项目功能的信息。 Example.cpp 这是主应用程序源文件。 包含用于显示窗体的代码。 Form1.h 包含窗体类的实现和 InitializeComponent() 函数。 AssemblyInfo.cpp 包含用于修改程序集元数据的自定义属性。 ///////////////////////////////////////////////////////////////////////////// 其他标准文件: StdAfx.h, StdAfx.cpp 这些文件用于生成名为 Example.pch 的预编译头文件 和名为 StdAfx.obj 的预编译类型文件。 -this is a vc++ interface example!
Platform: | Size: 2028544 | Author: fuyb | Hits:

[Dialog_Windowtestwin

Description: 如何在Delphi中编写小于20K的Windows程序. 演示如何使用: CreateWindow,CreateWindowEx,SendMessage and GetMessage TranslateMessage and DispatchMessage, CreateFont 演示如何使用API创建Windows窗口控件-How to Delphi in the preparation of the Windows program is less than 20K. Demonstrate how to use: CreateWindow, CreateWindowEx, SendMessage and GetMessage TranslateMessage and DispatchMessage, CreateFont demonstration how to use the API to create Windows window control
Platform: | Size: 12288 | Author: richardw | Hits:

[Windows DevelopCreateWindow

Description: create window in mfc
Platform: | Size: 64512 | Author: maryam | Hits:

[Delphi VCLCreateWindow

Description: 创建特色窗口标题条,更改窗口显示程序,delphi7.0-CreateWindows
Platform: | Size: 263168 | Author: wind | Hits:

[Delphi VCLCreateWindow

Description: 创建不规则窗口,DELPHI 7 测试通过-Create irregular window
Platform: | Size: 162816 | Author: xulixuli | Hits:
« 12 »

CodeBus www.codebus.net