⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 apicreatestruct.cls

📁 几个不错的VB例子
💻 CLS
字号:
VERSION 1.0 CLASS
BEGIN
  MultiUse = -1  'True
END
Attribute VB_Name = "ApiCreateStruct"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = True
Attribute VB_Ext_KEY = "SavedWithClassBuilder" ,"Yes"
Attribute VB_Ext_KEY = "Top_Level" ,"Yes"
Option Explicit

' ##MODULE_DESCRIPTION This class provides the properties that are passed to a window _
when it is created.  These describe the information required to create the window.

Private Type CREATESTRUCT
    lpCreateParams As Long
    hInstance As Long
    hMenu As Long
    hWndParent As Long
    cy As Long
    cx As Long
    y As Long
    x As Long
    Style As Long
    lpszName As Long
    lpszClass As Long
    ExStyle As Long
End Type

Public lpCreateParams As Long
Public hInstance As Long
Public hMenu As Long
Public hWndParent As Long
Public cy As Long
Public cx As Long
Public y As Long
Public x As Long
Public Style As Long
Public lpszName As String
Public lpszClass As String
Public ExStyle As Long

Public CreatedOK As Boolean

'\\ Private memory handling functions
Private Declare Sub CopyMemoryCreateStruct Lib "kernel32" Alias "RtlMoveMemory" (Destination As CREATESTRUCT, ByVal Source As Long, ByVal Length As Long)
Private Declare Function IsBadReadPtrCreateStruct Lib "kernel32" Alias "IsBadReadPtr" (ByVal lp As Long, ByVal ucb As Long) As Long
Private Declare Function IsBadWritePtrCreateStruct Lib "kernel32" Alias "IsBadWritePtr" (ByVal lp As Long, ByVal ucb As Long) As Long


'\\ --[CreateFromPointer]---------------------------------------------
'\\ Fills this CreateStructobject from the location poiunted to by
'\\ lpCreateStruct
'\\ VB.NET Porting note: This function should be replaced with an override
'\\ of the New() for correctness
'\\ ----------------------------------------------------------------------------------------
'\\ (c) 2001 - Merrion Computing.  All rights  to use, reproduce or publish this code reserved
'\\ Please check http://www.merrioncomputing.com for updates.
'\\ ----------------------------------------------------------------------------------------
Friend Function CreateFromPointer(lpCreateStruct As Long) As Boolean

Dim ftThis As CREATESTRUCT

CreatedOK = False

If Not IsBadReadPtrCreateStruct(lpCreateStruct, Len(ftThis)) Then
    Call CopyMemoryCreateStruct(ftThis, lpCreateStruct, Len(ftThis))
    If Err.LastDllError = 0 Then
        With ftThis
            cx = .cx
            cy = .cy
            ExStyle = .ExStyle
            hInstance = .hInstance
            hMenu = .hMenu
            hWndParent = .hWndParent
            lpCreateParams = .lpCreateParams
            lpszClass = .lpszClass
            lpszName = .lpszName
            Style = .Style
            x = .x
            y = .y
            If Err.LastDllError = 0 Then
                CreatedOK = True
            End If
        End With
    End If
End If

CreateFromPointer = CreatedOK

End Function

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -