frmTest.frm
上传用户:yayuwl
上传日期:2022-03-18
资源大小:8952k
文件大小:1k
源码类别:

CAD

开发平台:

VBA

  1. VERSION 5.00
  2. Begin VB.Form frmTest 
  3.    Caption         =   "VBA示例"
  4.    ClientHeight    =   1335
  5.    ClientLeft      =   60
  6.    ClientTop       =   450
  7.    ClientWidth     =   5385
  8.    LinkTopic       =   "Form1"
  9.    MinButton       =   0   'False
  10.    ScaleHeight     =   1335
  11.    ScaleWidth      =   5385
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin VB.Label Label1 
  14.       Caption         =   "Hello World"
  15.       BeginProperty Font 
  16.          Name            =   "宋体"
  17.          Size            =   42
  18.          Charset         =   134
  19.          Weight          =   400
  20.          Underline       =   0   'False
  21.          Italic          =   0   'False
  22.          Strikethrough   =   0   'False
  23.       EndProperty
  24.       Height          =   855
  25.       Left            =   360
  26.       TabIndex        =   0
  27.       Top             =   240
  28.       Width           =   4695
  29.    End
  30. End
  31. Attribute VB_Name = "frmTest"
  32. Attribute VB_GlobalNameSpace = False
  33. Attribute VB_Creatable = False
  34. Attribute VB_PredeclaredId = True
  35. Attribute VB_Exposed = False
  36. Private Declare Function SetParent Lib "user32" (ByVal hWndChild As Long, ByVal hWndNewParent As Long) As Long
  37. Private Declare Function GetParent Lib "user32" (ByVal hwnd As Long) As Long
  38. Private m_oApp As Object
  39. Public Property Set Application(ByVal vNewValue As Object)
  40.     Set m_oApp = vNewValue
  41. End Property
  42. Private Sub Form_Load()
  43.     SetParent Me.hwnd, GetParent(GetParent(m_oApp.ActiveDocument.hwnd))
  44. End Sub