home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form ContainedForm2
- BorderStyle = 0 'None
- ClientHeight = 3195
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 5880
- ControlBox = 0 'False
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MDIChild = -1 'True
- MinButton = 0 'False
- ScaleHeight = 3195
- ScaleWidth = 5880
- ShowInTaskbar = 0 'False
- Begin VB.ListBox List2
- BeginProperty Font
- Name = "Verdana"
- Size = 9
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 2370
- Left = 3240
- TabIndex = 3
- Top = 600
- Width = 2535
- End
- Begin VB.CommandButton Command2
- Caption = "<"
- BeginProperty Font
- Name = "Tahoma"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 2760
- TabIndex = 2
- Top = 2280
- Width = 375
- End
- Begin VB.CommandButton Command1
- Caption = ">"
- BeginProperty Font
- Name = "Tahoma"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 2760
- TabIndex = 1
- Top = 960
- Width = 375
- End
- Begin VB.ListBox List1
- BeginProperty Font
- Name = "Verdana"
- Size = 9
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 2370
- Left = 120
- TabIndex = 0
- Top = 600
- Width = 2535
- End
- Begin VB.Label Label2
- Caption = "Selected Components"
- BeginProperty Font
- Name = "Verdana"
- Size = 9
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 3240
- TabIndex = 5
- Top = 240
- Width = 2295
- End
- Begin VB.Label Label1
- Caption = "Available Components"
- BeginProperty Font
- Name = "Verdana"
- Size = 9
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 120
- TabIndex = 4
- Top = 240
- Width = 2175
- End
- Attribute VB_Name = "ContainedForm2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- If List1.ListIndex = -1 Then Exit Sub
- List2.AddItem List1.Text
- List1.RemoveItem List1.ListIndex
- End Sub
- Private Sub Command2_Click()
- If List2.ListIndex = -1 Then Exit Sub
- List1.AddItem List2.Text
- List2.RemoveItem List2.ListIndex
- End Sub
- Private Sub Form_Load()
- List1.AddItem "Visual Basic, Learning Ed."
- List1.AddItem "Visual Basic, Professional Ed."
- List1.AddItem "Visual Basic, Enterprise Ed."
- List1.AddItem "Visual C++"
- List1.AddItem "Visual J++"
- List1.AddItem "Visual Studio"
- List1.AddItem "Visual InterDev"
- List1.AddItem "Data Access Objects"
- List1.AddItem "SQL Server"
- List1.AddItem "Active Server Pages"
- List1.AddItem "Internet Information Server"
- List1.AddItem "Personal Web Server"
- End Sub
-