home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form2
- Caption = "Seek Name Entry"
- ClientHeight = 1305
- ClientLeft = 2850
- ClientTop = 2580
- ClientWidth = 3375
- Height = 1770
- Left = 2760
- LinkTopic = "Form2"
- ScaleHeight = 1305
- ScaleWidth = 3375
- Top = 2205
- Width = 3555
- Begin VB.CommandButton Command2
- Caption = "Cancel"
- Height = 375
- Left = 1680
- TabIndex = 3
- Top = 720
- Width = 1095
- End
- Begin VB.CommandButton Command1
- Caption = "Seek"
- Height = 375
- Left = 240
- TabIndex = 2
- Top = 720
- Width = 1215
- End
- Begin VB.TextBox seek1
- Height = 285
- Left = 1560
- TabIndex = 1
- Top = 120
- Width = 1095
- End
- Begin VB.Label Label1
- Caption = "Name to Find:"
- Height = 255
- Left = 360
- TabIndex = 0
- Top = 120
- Width = 1095
- End
- Attribute VB_Name = "Form2"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- Seeknm = seek1.TEXT
- Seekac = 1
- Unload Form2
- End Sub
- Private Sub Command2_Click()
- Seekac = 2
- Unload Form2
- End Sub
-