home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form1
- Caption = "Form1"
- ClientHeight = 3870
- ClientLeft = 1365
- ClientTop = 1860
- ClientWidth = 4230
- Height = 4275
- Left = 1305
- LinkTopic = "Form1"
- ScaleHeight = 3870
- ScaleWidth = 4230
- Top = 1515
- Width = 4350
- Begin CheckBox Check1
- Caption = "Check1"
- Height = 255
- Left = 1560
- TabIndex = 5
- Top = 960
- Width = 1215
- End
- Begin OptionButton Option1
- Caption = "Option1"
- Height = 255
- Left = 1560
- TabIndex = 4
- Top = 720
- Width = 1215
- End
- Begin CommandButton Command2
- Caption = "Show Probe Dialog Box..."
- Height = 375
- Left = 240
- TabIndex = 3
- Top = 3240
- Width = 3735
- End
- Begin Probe Probe1
- ControlName = ""
- Height = 420
- Left = 3600
- Top = 120
- Width = 420
- End
- Begin ListBox List1
- Height = 1785
- Left = 240
- TabIndex = 1
- Top = 1320
- Width = 2055
- End
- Begin CommandButton Command1
- Caption = "Command1"
- Height = 495
- Left = 240
- TabIndex = 0
- Top = 720
- Width = 1215
- End
- Begin Label Label2
- Caption = "Press the ""Show Probe Dialog Box..."" button and then play with the properties of the controls on the form. "
- Height = 1815
- Left = 2520
- TabIndex = 6
- Top = 1320
- Width = 1455
- End
- Begin Label Label1
- Caption = "Probe Sample"
- FontBold = -1 'True
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 15
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 375
- Left = 240
- TabIndex = 2
- Top = 120
- Width = 2535
- End
- Option Explicit
- Sub Command2_Click ()
- Probe1.Visible = True
- End Sub
- Sub Form_Load ()
- List1.AddItem "James Shields"
- List1.AddItem "Zane Thomas"
- List1.AddItem "Ruth James"
- List1.AddItem "Todd Born"
- List1.AddItem "Wendy Cox"
- List1.AddItem "Lisa Daugaard"
- List1.AddItem "Karen Klein"
- End Sub
-