RISS 학술연구정보서비스

검색
다국어 입력

http://chineseinput.net/에서 pinyin(병음)방식으로 중국어를 변환할 수 있습니다.

변환된 중국어를 복사하여 사용하시면 됩니다.

예시)
  • 中文 을 입력하시려면 zhongwen을 입력하시고 space를누르시면됩니다.
  • 北京 을 입력하시려면 beijing을 입력하시고 space를 누르시면 됩니다.
닫기
    인기검색어 순위 펼치기

    RISS 인기검색어

      Win32 API programming with Visual Basic

      한글로보기

      https://www.riss.kr/link?id=M7892235

      • 저자
      • 발행사항

        California : O'Reilly, 2000

      • 발행연도

        2000

      • 작성언어

        영어

      • 주제어
      • DDC

        005.265 판사항(21)

      • ISBN

        1565926315

      • 자료형태

        일반단행본

      • 발행국(도시)

        California

      • 서명/저자사항

        Win32 API programming with Visual Basic / Steven Roman.

      • 형태사항

        xix, 511 p. : ill. ; 24 cm. + 1 computer optical disk (4 3/4 in.).

      • 일반주기명

        "Taking advantage of Windows system services"--Cover.
        Includes index.

      • 소장기관
        • 건국대학교 GLOCAL(글로컬)캠퍼스 중원도서관 소장기관정보
        • 경희대학교 중앙도서관 소장기관정보
        • 고려대학교 세종학술정보원 소장기관정보 Deep Link
        • 호서대학교 중앙도서관 소장기관정보
      • 0

        상세조회
      • 0

        다운로드
      서지정보 열기
      • 내보내기
      • 내책장담기
      • 공유하기
      • 오류접수

      부가정보

      목차 (Table of Contents)

      • 자료제공 : aladin
      • I. Declaring API Functions in Visual Basic 1
      • 1. Introduction
      • What Is the Win32 API?
      • The Obstacles to Win32 API Programming Under Visual Basic
      • Proceed with Circumspection
      • 자료제공 : aladin
      • I. Declaring API Functions in Visual Basic 1
      • 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 139
      • 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 ) 261
      • 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 ) 353
      • 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 435
      • A. The Clipboard
      • B. The Windows Shell
      • C. The Registry and Private Profiles
      더보기

      온라인 도서 정보

      온라인 서점 구매

      온라인 서점 구매 정보
      서점명 서명 판매현황 종이책 전자책 구매링크
      정가 판매가(할인율) 포인트(포인트몰)
      알라딘

      WIN32 API Programming with Visual Basic [With CDROM] (Paperback)

      품절 48,000원 45,600원 (5%)

      종이책 구매

      2,280포인트
      예스24.com

      WIN32 API Programming with Visual Basic [With CDROM]

      품절 48,000원 45,600원 (5%)

      종이책 구매

      2,280포인트 (5%)
      • 포인트 적립은 해당 온라인 서점 회원인 경우만 해당됩니다.
      • 상기 할인율 및 적립포인트는 온라인 서점에서 제공하는 정보와 일치하지 않을 수 있습니다.
      • RISS 서비스에서는 해당 온라인 서점에서 구매한 상품에 대하여 보증하거나 별도의 책임을 지지 않습니다.

      분석정보

      View

      상세정보조회

      0

      Usage

      원문다운로드

      0

      대출신청

      0

      복사신청

      0

      EDDS신청

      0

      동일 주제 내 활용도 TOP

      더보기

      이 자료와 함께 이용한 RISS 자료

      나만을 위한 추천자료

      해외이동버튼