home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- BorderStyle = 1 'Fixed Single
- Caption = "WebSearch"
- ClientHeight = 780
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 5415
- Icon = "Search.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 780
- ScaleWidth = 5415
- StartUpPosition = 3 'Windows Default
- Begin VB.Frame Frame1
- Height = 700
- Left = 60
- TabIndex = 0
- Top = 0
- Width = 5295
- Begin VB.CommandButton cmdSearch
- Caption = "&Search"
- Default = -1 'True
- Height = 350
- Left = 4320
- TabIndex = 3
- Top = 220
- Width = 855
- End
- Begin VB.ComboBox cmEngines
- Height = 315
- ItemData = "Search.frx":014A
- Left = 2760
- List = "Search.frx":0172
- Style = 2 'Dropdown List
- TabIndex = 2
- Top = 240
- Width = 1455
- End
- Begin VB.TextBox txWhatSearch
- Height = 315
- Left = 120
- TabIndex = 1
- Top = 240
- Width = 2535
- End
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- ' Author: Marek Letosnik
- ' letosnik@iol.cz
- Private Sub cmdSearch_Click()
- If txWhatSearch = "" Then Exit Sub
- Search cmEngines.ListIndex, txWhatSearch
- End Sub
- Private Sub Form_Load()
- cmEngines.ListIndex = 0
- End Sub
-