home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.UserDocument UserDoc2
- BackColor = &H00E0E0E0&
- ClientHeight = 1680
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 4800
- HScrollSmallChange= 15
- ScaleHeight = 1680
- ScaleWidth = 4800
- VScrollSmallChange= 15
- Begin VB.CommandButton Command1
- Caption = "Show Title Property"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 315
- Left = 120
- TabIndex = 1
- Top = 840
- Width = 1965
- End
- Begin VB.Label Label2
- Alignment = 2 'Center
- Caption = "This is the first ActiveX Document"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 285
- Left = 0
- TabIndex = 2
- Top = 270
- Width = 4815
- End
- Begin VB.Label Label1
- BorderStyle = 1 'Fixed Single
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 330
- Left = 2370
- TabIndex = 0
- Top = 840
- Width = 2190
- End
- End
- Attribute VB_Name = "UserDoc2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = True
- Option Explicit
-
- Private Sub Command1_Click()
- Label1.Caption = UDoc.Title
- End Sub
-
-