home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 5430
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 7650
- LinkTopic = "Form1"
- ScaleHeight = 5430
- ScaleWidth = 7650
- StartUpPosition = 3 'Windows Default
- Begin VB.TextBox Text3
- BeginProperty Font
- Name = "Tahoma"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 1110
- Left = 2700
- MultiLine = -1 'True
- TabIndex = 8
- Text = "Combo1.frx":0000
- Top = 3720
- Width = 4665
- End
- Begin VB.TextBox Text2
- BeginProperty Font
- Name = "Tahoma"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 1320
- Left = 2715
- MultiLine = -1 'True
- TabIndex = 7
- Text = "Combo1.frx":00A6
- Top = 1755
- Width = 4665
- End
- Begin VB.TextBox Text1
- BeginProperty Font
- Name = "Tahoma"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 1110
- Left = 2715
- MultiLine = -1 'True
- TabIndex = 6
- Text = "Combo1.frx":012F
- Top = 210
- Width = 4665
- End
- Begin VB.ComboBox Combo3
- Height = 315
- Left = 225
- Style = 2 'Dropdown List
- TabIndex = 2
- Top = 4005
- Width = 2100
- End
- Begin VB.ComboBox Combo2
- Height = 960
- Left = 240
- Style = 1 'Simple Combo
- TabIndex = 1
- Text = "Combo2"
- Top = 2062
- Width = 2100
- End
- Begin VB.ComboBox Combo1
- Height = 315
- Left = 240
- TabIndex = 0
- Text = "Combo1"
- Top = 510
- Width = 2100
- End
- Begin VB.Label Label3
- Caption = "DropDown List"
- BeginProperty Font
- Name = "Trebuchet MS"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 270
- Left = 225
- TabIndex = 5
- Top = 3615
- Width = 2100
- End
- Begin VB.Label Label2
- Caption = "Simple Combo"
- BeginProperty Font
- Name = "Trebuchet MS"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 315
- Left = 240
- TabIndex = 4
- Top = 1665
- Width = 2100
- End
- Begin VB.Label Label1
- Caption = "DropDown Combo"
- BeginProperty Font
- Name = "Trebuchet MS"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 300
- Left = 240
- TabIndex = 3
- Top = 120
- Width = 2100
- 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 Form_Load()
- Combo1.AddItem "TextBox"
- Combo1.AddItem "Label"
- Combo1.AddItem "ListBox"
- Combo1.AddItem "ComboBox"
- Combo1.AddItem "Timer"
- Combo1.AddItem "Scrollbar"
- Combo1.ListIndex = 0
- Combo2.AddItem "BackColor"
- Combo2.AddItem "ForeColor"
- Combo2.AddItem "Caption"
- Combo2.AddItem "Text"
- Combo2.AddItem "Index"
- Combo2.AddItem "TabStop"
- Combo2.ListIndex = 0
- Combo3.AddItem "Clear"
- Combo3.AddItem "Line"
- Combo3.AddItem "Circle"
- Combo3.AddItem "AddItem"
- Combo3.AddItem "RemoveItem"
- Combo3.AddItem "Move"
- Combo3.ListIndex = 0
- End Sub
-