home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form DropForm2
- Caption = "STATES"
- ClientHeight = 3225
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 2820
- LinkTopic = "Form2"
- ScaleHeight = 3225
- ScaleWidth = 2820
- StartUpPosition = 3 'Windows Default
- Begin VB.ListBox List1
- Height = 2625
- Left = 120
- TabIndex = 0
- Top = 480
- Width = 2535
- End
- Begin VB.Label Label1
- Caption = "Drop States in this ListBox"
- BeginProperty Font
- Name = "Tahoma"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 120
- TabIndex = 1
- Top = 120
- Width = 2535
- End
- Attribute VB_Name = "DropForm2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub List1_DragDrop(Source As Control, X As Single, Y As Single)
- If Source.Caption = "********" Then
- Beep
- Exit Sub
- End If
- List1.AddItem Source.Caption & " (" & Source.Parent.Name & ")"
- Source.Caption = "********"
- End Sub
-