¿++.frm
上传用户:zhpu1995
上传日期:2013-09-06
资源大小:61151k
文件大小:3k
源码类别:

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form Locate_Frm 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "人员定位"
  5.    ClientHeight    =   960
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   3285
  9.    Icon            =   "定位.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   960
  14.    ScaleWidth      =   3285
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   1  '所有者中心
  17.    Begin VB.TextBox Txt_Person 
  18.       Height          =   300
  19.       Left            =   555
  20.       TabIndex        =   0
  21.       Top             =   165
  22.       Width           =   2640
  23.    End
  24.    Begin VB.CommandButton Cmd_Cancel 
  25.       Cancel          =   -1  'True
  26.       Caption         =   "取消(&C)"
  27.       Height          =   300
  28.       Left            =   2070
  29.       TabIndex        =   2
  30.       Top             =   570
  31.       Width           =   1120
  32.    End
  33.    Begin VB.CommandButton Cmd_OK 
  34.       Caption         =   "确定(&O)"
  35.       Default         =   -1  'True
  36.       Height          =   300
  37.       Left            =   870
  38.       TabIndex        =   1
  39.       Top             =   585
  40.       Width           =   1120
  41.    End
  42.    Begin VB.Label Lab_Mark 
  43.       AutoSize        =   -1  'True
  44.       Caption         =   "人员:"
  45.       Height          =   180
  46.       Left            =   75
  47.       TabIndex        =   3
  48.       Top             =   225
  49.       Width           =   450
  50.    End
  51. End
  52. Attribute VB_Name = "Locate_Frm"
  53. Attribute VB_GlobalNameSpace = False
  54. Attribute VB_Creatable = False
  55. Attribute VB_PredeclaredId = True
  56. Attribute VB_Exposed = False
  57. '******************************************************************
  58. '*    模 块 名 称 :定位
  59. '*    功 能 描 述 :
  60. '*    程序员姓名  :苗鹏
  61. '*    最后修改人  :苗鹏
  62. '*    最后修改时间:2002/01/01
  63. '*    备        注:
  64. '******************************************************************
  65. Option Explicit
  66. Public frm As Form
  67. Private Sub Cmd_Cancel_Click()
  68.     Unload Me
  69. End Sub
  70. Private Sub Cmd_OK_Click()
  71.     '调用父窗体的 Locate(s as string ) 函数
  72.     With frm
  73.         If Trim(Me.Txt_Person.Text) <> "" Then
  74.             If frm.Locate(Me.Txt_Person.Text) = 0 Then
  75.                 MsgBox "没有此人!", vbOKOnly + vbCritical
  76.             End If
  77.             Me.Txt_Person.SetFocus
  78.             Me.Txt_Person.SelStart = 0
  79.             Me.Txt_Person.SelLength = Len(Me.Txt_Person.Text)
  80.         End If
  81.     End With
  82. End Sub
  83. Private Sub Form_Unload(Cancel As Integer)
  84.     Set frm = Nothing
  85. End Sub