home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{52D5F641-AFBC-11CF-A66F-444553540000}#1.0#0"; "FLXLABEL.OCX"
- Begin VB.Form TestForm
- BackColor = &H00C0C0C0&
- Caption = "FLEXLabel Control - Test Form"
- ClientHeight = 2220
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 7965
- LinkTopic = "Form1"
- ScaleHeight = 2220
- ScaleWidth = 7965
- StartUpPosition = 3 'Windows Default
- Begin FLEXLABEL.Label3D Label3D1
- Height = 1995
- Left = 120
- TabIndex = 0
- Tag = "My First Custom Control"
- Top = 120
- Width = 7755
- _ExtentX = 13679
- _ExtentY = 3519
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "Garamond"
- Size = 36
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- BorderStyle = 1
- ForeColor = 0
- Caption = "FLEXLabel Control"
- Effect = 1
- BackColor = 12632256
- End
- Attribute VB_Name = "TestForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- ' ******************************
- ' ******************************
- ' ** MASTERING VB6 **
- ' ** by Evangelos Petroutos **
- ' ** SYBEX, 1998 **
- ' ******************************
- ' ******************************
- Private Sub Label3D1_Click()
- MsgBox "My properties are " & vbCrLf & _
- "Caption = " & Label3D1.Caption & Chr$(13) & _
- "TextAlignment = " & Label3D1.TextAlignment & Chr$(13) & _
- "Effect = " & Label3D1.Effect
- End Sub
-