Win32 API Programming with Visual Basic

個数:

Win32 API Programming with Visual Basic

  • 在庫がございません。海外の書籍取次会社を通じて出版社等からお取り寄せいたします。
    通常6~9週間ほどで発送の見込みですが、商品によってはさらに時間がかかることもございます。
    重要ご説明事項
    1. 納期遅延や、ご入手不能となる場合がございます。
    2. 複数冊ご注文の場合、分割発送となる場合がございます。
    3. 美品のご指定は承りかねます。
  • 【入荷遅延について】
    世界情勢の影響により、海外からお取り寄せとなる洋書・洋古書の入荷が、表示している標準的な納期よりも遅延する場合がございます。
    おそれいりますが、あらかじめご了承くださいますようお願い申し上げます。
  • ◆画像の表紙や帯等は実物とは異なる場合があります。
  • ◆ウェブストアでの洋書販売価格は、弊社店舗等での販売価格とは異なります。
    また、洋書販売価格は、ご注文確定時点での日本円価格となります。
    ご注文確定後に、同じ洋書の販売価格が変動しても、それは反映されません。
  • ページ数 509 p.
  • 言語 ENG
  • 商品コード 9781565926318
  • DDC分類 005.4469

Full Description

The Win32 API, or Application Programming Interface, is of immense use in extending the power of Visual Basic. The Win32 API is the collection of functions and subroutines that provides programmatic access to the features of the operating system. It allows Visual Basic programmers far greater access to the inner workings of the Windows operating system without having to suffer through the steep learning curve associated with Visual C++ style Windows programming. The book is designed for users with an intermediate-level (or higher) knowledge of Visual Basic version 4 or later and a desire to stretch VB into the realm of Windows system programming. Users do not need any background in Visual C++, nor do they need any previous experience programming the Win32 API. This book teaches users how to do relatively simple tasks, such as adding tab stops to a list box and gathering system information (i.e., which version of Windows is running on a system and the number of buttons on the user's mouse).
It also teaches users about several advanced programming techniques such as synchronizing two VB applications so they can work in cooperation with each other and how to extract data from controls that belong to another application. Win32 API Programming with Visual Basic also spends a good deal of time describing the basic operations of the Windows NT and Windows 95/98 operating systems. Microsoft's documentation seldom takes into account what the reader knows or does not know. Hence, a solid grounding in the basics of the Windows operating systems will help VB programmers to better understand Microsoft's documentation. This book helps VB programmers eliminate the trial and error process that is usually associated with calling the Win32 API from Visual Basic and does so in a practical, straightforward fashion that is the hallmark of author Steve Roman's style.

Contents

Preface I. Declaring API Functions in Visual Basic 1. Introduction What Is the Win32 API? The Obstacles to Win32 API Programming Under Visual Basic Proceed with Circumspection Cautions 2. Preliminaries Character Codes Parameters and Arguments Dynamic Link Libraries Some C++ Syntax Pointers 3. API Declarations The VB Declare Statement The VC-to-VB Translation Game Plan Passing Parameters to an External Function CopyMemory-A VB Hacker's Dream Dealing with API Errors 4. Data Types What Is a Data Type? Fundamental and Derived Data Types Visual Basic Data Types Basic VC++ Data Types Translating Derived Data Types Win32 Typedefs An Example Structures and User-Defined Types Flags Symbolic Constants 5. Signed and Unsigned Data Types Signed and Unsigned Representations Why Two Different Representations? Unsigned Representation Signed Representation Translating Between Signed and Unsigned Representations Converting Between Word Lengths 6. Strings The BSTR C-Style LPSTR and LPWSTR Strings String Terminology Tools for Exploring Strings String Conversion by VB Passing Strings to the Win32 API Strings and Byte Arrays Getting the Address of a Variable of User -Defined Type 7. System Information Functions The Computer's Name Special Windows Paths The Operating System Version System Metrics System Parameters System Colors 8. Exception Handling Thwarting the General Protection Fault Replacing the Default Exception Handler The Replacement Exception Handler A Complete Example II. The Windows Operating System 9. Windows Architecture Processes and Threads Windows Architecture Differences Between Windows 9x and Windows NT 10. Objects and Their Handles Handles Example: File Mapping 11. Processes Process Handles and IDs Module Handles Identifying a Process Process Pseudohandles Enumerating Processes Is This Application Already Running? 12. Threads Thread Handles and Thread IDs Thread Priority Thread Synchronization Waiting Can Be Tricky 13. Windows Memory Architecture Types of Memory The Address Space of a Process Example: Using GetSystemInfo Allocating Virtual Memory Example: Using GlobalMemoryStatus Virtual Memory Management Heaps of Memory Example: Mapping Virtual Memory 14. Portable Executable Files Module Relocation The PE File Format Example: Getting PE File Information III. Windows (USER32.DLL Programming ) 15. Windows: The Basics Terminology Window Styles Owned Windows Z Order Enumerating Windows Size and Position Functions 16. Windows Messages The Message Queues of a Thread The Windows Messaging System Posting and Sending Messages Example: Sending Messages to a Listbox Interprocess Marshalling Copying Data Between Processes The Local Input State 17. Window Classes and the Window Creation Process Window Classes Predefined Window Classes The Window Procedure of a Window Class Creating a Window Window Styles Windows and VB Controls Example: Spying on Windows 18. Windows Subclassing Subclassing a Window or Window Class Example: Subclassing the VB Checkbox Class 19. Windows Hooks Global and Thread-Specific Hooks Setting the Hook Hook Procedures Hook Types Hook Chains Example: A Local Hook Example: A Global Hook 20. DLL Injection and Foreign Process Access Accessing a Foreign Process: The Hooked Thread Graph Allocating Foreign Memory Example: Foreign Control Extraction Example: Fixing the VB6 Help System IV. The Windows GDI (GDI32.DLL Programming ) 21. Bitmaps Rectangles Bitmaps Bitmap Functions Using Bitmaps in Menus 22. Device Contexts I: Overview How Windows Handles Window Painting Device Contexts 23. Device Contexts II: Types of Device Contexts Information Device Contexts Memory Device Contexts Printer Device Contexts Display Device Contexts Coordinate Systems 24. Device Contexts III: Coordinate Systems GDI Coordinate Systems Virtual Space Device Space Page Space Virtual Space to Physical Space Setting Up Logical Coordinates in Physical Space Mapping Modes World Space 25. Fonts Font Families Font Technologies Character Sets Logical and Physical Fonts Enumerating Fonts V. Appendixes A. The Clipboard B. The Windows Shell C. The Registry and Private Profiles