home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / El_Scripto766934282002.psc / frmFind.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2002-04-28  |  2.1 KB  |  68 lines

  1. VERSION 5.00
  2. Begin VB.Form frmFind 
  3.    BorderStyle     =   4  'Fixed ToolWindow
  4.    Caption         =   "Find in text"
  5.    ClientHeight    =   780
  6.    ClientLeft      =   45
  7.    ClientTop       =   285
  8.    ClientWidth     =   3540
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    ScaleHeight     =   780
  13.    ScaleWidth      =   3540
  14.    ShowInTaskbar   =   0   'False
  15.    StartUpPosition =   3  'Windows Default
  16.    Begin VB.CommandButton cmdFind 
  17.       Caption         =   "Find"
  18.       Height          =   255
  19.       Left            =   2520
  20.       TabIndex        =   2
  21.       Top             =   480
  22.       Width           =   975
  23.    End
  24.    Begin VB.TextBox txtFind 
  25.       Appearance      =   0  'Flat
  26.       BeginProperty Font 
  27.          Name            =   "Small Fonts"
  28.          Size            =   6.75
  29.          Charset         =   0
  30.          Weight          =   400
  31.          Underline       =   0   'False
  32.          Italic          =   0   'False
  33.          Strikethrough   =   0   'False
  34.       EndProperty
  35.       Height          =   285
  36.       Left            =   840
  37.       TabIndex        =   1
  38.       Top             =   80
  39.       Width           =   2655
  40.    End
  41.    Begin VB.Label Label1 
  42.       AutoSize        =   -1  'True
  43.       BackStyle       =   0  'Transparent
  44.       Caption         =   "Search:"
  45.       BeginProperty Font 
  46.          Name            =   "MS Sans Serif"
  47.          Size            =   8.25
  48.          Charset         =   0
  49.          Weight          =   700
  50.          Underline       =   0   'False
  51.          Italic          =   0   'False
  52.          Strikethrough   =   0   'False
  53.       EndProperty
  54.       Height          =   195
  55.       Left            =   120
  56.       TabIndex        =   0
  57.       Top             =   120
  58.       Width           =   675
  59.    End
  60. Attribute VB_Name = "frmFind"
  61. Attribute VB_GlobalNameSpace = False
  62. Attribute VB_Creatable = False
  63. Attribute VB_PredeclaredId = True
  64. Attribute VB_Exposed = False
  65. Private Sub cmdFind_Click()
  66. EditMenu frmMain.txtCode, "FIND"
  67. End Sub
  68.