home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{C4838E49-0637-11D3-B48C-444553540000}#15.0#0"; "AXPICKER.OCX"
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 4455
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 6495
- LinkTopic = "Form1"
- ScaleHeight = 4455
- ScaleWidth = 6495
- StartUpPosition = 3 'Windows Default
- Begin axPicklistControl.axPicker axPicker1
- Height = 2130
- Left = 225
- TabIndex = 1
- Top = 810
- Width = 5910
- _ExtentX = 10425
- _ExtentY = 3757
- End
- Begin VB.CommandButton Command1
- Caption = "Show Selected"
- Height = 510
- Left = 3465
- TabIndex = 0
- Top = 3780
- Width = 1860
- 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()
- arg = ""
- For x = 0 To axPicker1.ListCountS
- arg = arg + axPicker1.ListS(x) + vbCr
- Next
- MsgBox arg
- End Sub
- Private Sub Form_Load()
- axPicker1.AddItemA "Atest1"
- axPicker1.AddItemA "Btest2"
- axPicker1.AddItemA "Ctest3"
- axPicker1.AddItemA "Dtest4"
- axPicker1.AddItemA "Etest5"
- End Sub
-