home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form2
- Caption = "Seek Item Code Entry"
- ClientHeight = 1305
- ClientLeft = 2850
- ClientTop = 2580
- ClientWidth = 3285
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 1770
- Left = 2760
- LinkTopic = "Form2"
- ScaleHeight = 1305
- ScaleWidth = 3285
- Top = 2205
- Width = 3465
- Begin VB.CommandButton Command2
- Caption = "Cancel"
- Height = 375
- Left = 1800
- TabIndex = 3
- Top = 720
- Width = 1095
- End
- Begin VB.CommandButton Command1
- Caption = "Seek"
- Height = 375
- Left = 360
- TabIndex = 2
- Top = 720
- Width = 1215
- End
- Begin VB.TextBox seek1
- Height = 285
- Left = 1800
- TabIndex = 1
- Top = 120
- Width = 1095
- End
- Begin VB.Label Label1
- Caption = "Item Code to Find:"
- Height = 255
- Left = 360
- TabIndex = 0
- Top = 120
- Width = 1335
- 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 = 0
- Unload Form2
- End Sub
-