home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frmSelect
- Caption = "Parse Demo - Function Selection"
- ClientHeight = 3105
- ClientLeft = 2355
- ClientTop = 1800
- ClientWidth = 4860
- Height = 3540
- Icon = SELECT.FRX:0000
- Left = 2280
- LinkTopic = "Form1"
- ScaleHeight = 3105
- ScaleWidth = 4860
- Top = 1440
- Width = 5010
- Begin OptionButton optParse
- Caption = "ParseAndFillArray&1%()"
- Height = 270
- Index = 0
- Left = 780
- TabIndex = 0
- Top = 690
- Value = -1 'True
- Width = 3000
- End
- Begin OptionButton optParse
- Caption = "ParseAndFillArray&2%()"
- Height = 270
- Index = 1
- Left = 780
- TabIndex = 1
- Top = 1080
- Width = 3000
- End
- Begin OptionButton optParse
- Caption = "Pars&eAndFill&ListBox%()"
- Height = 270
- Index = 2
- Left = 780
- TabIndex = 2
- Top = 1500
- Width = 3000
- End
- Begin CommandButton cmdCancel
- Cancel = -1 'True
- Caption = "&Cancel"
- Height = 375
- Left = 2580
- TabIndex = 4
- Top = 2400
- Width = 1755
- End
- Begin CommandButton cmdSelect
- Caption = "&Select"
- Default = -1 'True
- Height = 375
- Left = 540
- TabIndex = 3
- Top = 2400
- Width = 1695
- End
- Begin Label Label1
- Alignment = 2 'Center
- BorderStyle = 1 'Fixed Single
- Caption = "Select Function To Test:"
- Height = 255
- Left = 1140
- TabIndex = 5
- Top = 180
- Width = 2475
- End
- Begin Shape Shape1
- Height = 1575
- Left = 660
- Shape = 4 'Rounded Rectangle
- Top = 540
- Width = 3555
- End
- Option Explicit
- Sub cmdCancel_Click ()
- SetFuncSelected Me, False
- SetSelectResult False
- Unload Me
- End Sub
- Sub cmdSelect_Click ()
- SetFuncSelected Me, True
- SetSelectResult True
- Unload Me
- End Sub
-