[CODE]VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 615
Left = 2400
TabIndex = 1
Top = 1080
Width = 1695
End
Begin VB.ListBox List2
Height = 1815
ItemData = "Form1.frx":0000
Left = 360
List = "Form1.frx":0013
TabIndex = 0
Top = 600
Width = 1575
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Dim a As Integer
For a = 0 To List2.ListIndex
If List2.Selected(a) = True Then
List2.RemoveItem a
End If
Next a
End Sub[/CODE]