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
- AutoRedraw = -1 'True
- Caption = "Gradient Control Demo"
- ClientHeight = 4275
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 6120
- LinkTopic = "Form1"
- Palette = "GradForm.frx":0000
- PaletteMode = 2 'Custom
- ScaleHeight = 4275
- ScaleWidth = 6120
- StartUpPosition = 3 'Windows Default
- Begin VB.TextBox Text1
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 2625
- Left = 195
- MultiLine = -1 'True
- TabIndex = 2
- Top = 720
- Width = 5775
- End
- Begin VB.CommandButton VGrad
- Caption = "Vertical Gradient"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 540
- Left = 4425
- TabIndex = 1
- Top = 3540
- Width = 1545
- End
- Begin VB.CommandButton HGrad
- Caption = "Horizontal Gradient"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 540
- Left = 2550
- TabIndex = 0
- Top = 3555
- Width = 1770
- End
- Begin ColorGradient.Gradient Gradient1
- Height = 3360
- Left = 105
- TabIndex = 3
- Top = 90
- Width = 5985
- _ExtentX = 10557
- _ExtentY = 5927
- Begin VB.Label Label1
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Transparent Label"
- BeginProperty Font
- Name = "Times New Roman"
- Size = 21.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FFFF00&
- Height = 525
- Left = 750
- TabIndex = 4
- Top = 75
- Width = 4545
- End
- 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 HGrad_Click()
- Gradient1.GradientDirection = 0
- End Sub
- Private Sub VGrad_Click()
- Gradient1.GradientDirection = 1
- End Sub
- Private Sub Form_Resize()
- Gradient1.Top = 0
- Gradient1.Left = 0
- Gradient1.Width = Form1.ScaleWidth
- Gradient1.Height = Form1.ScaleHeight
- End Sub
-