home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.PropertyPage Direction
- Caption = "Direction"
- ClientHeight = 3495
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 5925
- PaletteMode = 0 'Halftone
- ScaleHeight = 3495
- ScaleWidth = 5925
- Begin VB.ComboBox cmbGradient
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 360
- Left = 2130
- TabIndex = 1
- Text = "Combo1"
- Top = 225
- Width = 1995
- End
- Begin VB.Label lblGradientDirection
- Caption = "GradientDirection:"
- 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
- Index = 0
- Left = 210
- TabIndex = 0
- Top = 285
- Width = 1740
- End
- End
- Attribute VB_Name = "Direction"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = True
- Option Explicit
-
- Private Sub cmbGradient_click()
- Changed = True
- End Sub
-
-
- Private Sub PropertyPage_ApplyChanges()
- SelectedControls(0).GradientDirection = Val(cmbGradient.Text)
- End Sub
-
- Private Sub PropertyPage_SelectionChanged()
- cmbGradient.Clear
- cmbGradient.AddItem "0 - Horizontal"
- cmbGradient.AddItem "1 - Vertical"
- cmbGradient.ListIndex = SelectedControls(0).GradientDirection
- End Sub
-
-