home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form srchlist
- BorderStyle = 4 'Fixed ToolWindow
- Caption = "Search Engines"
- ClientHeight = 3720
- ClientLeft = 45
- ClientTop = 285
- ClientWidth = 3870
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3720
- ScaleWidth = 3870
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Begin VB.CommandButton Command1
- Caption = "Close"
- Height = 255
- Left = 2880
- TabIndex = 2
- Top = 120
- Width = 855
- End
- Begin VB.ListBox List1
- Height = 3210
- ItemData = "srchlist.frx":0000
- Left = 0
- List = "srchlist.frx":0022
- Sorted = -1 'True
- Style = 1 'Checkbox
- TabIndex = 0
- Top = 480
- Width = 3855
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Caption = "Select search engines that you want the program to search on it."
- Height = 495
- Left = 120
- TabIndex = 1
- Top = 0
- Width = 2775
- End
- Attribute VB_Name = "srchlist"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- On Error Resume Next
- Unload Me
- End Sub
- Private Sub Form_Load()
- On Error Resume Next
- For i = 0 To List1.ListCount - 1
- List1.Selected(i) = itm(i)
- Next i
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- On Error Resume Next
- Open App.Path & "\srch.txt" For Output As #1
- For i = 0 To List1.ListCount - 1
- Write #1, List1.Selected(i)
- itm(i) = List1.Selected(i)
- Next i
- Close #1
- Unload Me
- End Sub
-