home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{97E3FD72-68D4-11D0-BB11-444553540000}#31.0#0"; "gradient.ocx"
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 3195
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4680
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- ScaleHeight = 3195
- ScaleWidth = 4680
- StartUpPosition = 3 'Windows Default
- Begin ColorGradient.Gradient Gradient1
- Height = 1920
- Left = 570
- TabIndex = 0
- Top = 525
- Width = 3525
- _ExtentX = 6218
- _ExtentY = 3387
- StartColor = 16776960
- EndColor = 16711935
- GradientDirection= 1
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Gradient1_Click()
- MsgBox "My properties are " & _
- "StartColor = " & Gradient1.StartColor & Chr$(13) & _
- "EndColor = " & Gradient1.EndColor & Chr$(13) & _
- "GradientDirection = " & Gradient1.GradientDirection
- End Sub
-