QueryEvent2.frm
上传用户:cntx88
上传日期:2022-08-07
资源大小:169k
文件大小:1k
源码类别:

企业管理

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "Msflxgrd.ocx"
  3. Begin VB.Form QueryEvent2 
  4.    Caption         =   "搜索结果"
  5.    ClientHeight    =   6840
  6.    ClientLeft      =   60
  7.    ClientTop       =   450
  8.    ClientWidth     =   8715
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   6840
  11.    ScaleWidth      =   8715
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin VB.CommandButton Command1 
  14.       Caption         =   "返回"
  15.       Default         =   -1  'True
  16.       Height          =   495
  17.       Left            =   120
  18.       TabIndex        =   1
  19.       Top             =   6120
  20.       Width           =   8415
  21.    End
  22.    Begin MSFlexGridLib.MSFlexGrid MSFlexGrid1 
  23.       Height          =   5775
  24.       Left            =   120
  25.       TabIndex        =   0
  26.       Top             =   120
  27.       Width           =   8415
  28.       _ExtentX        =   14843
  29.       _ExtentY        =   10186
  30.       _Version        =   393216
  31.       Cols            =   5
  32.       FixedCols       =   0
  33.       FillStyle       =   1
  34.    End
  35. End
  36. Attribute VB_Name = "QueryEvent2"
  37. Attribute VB_GlobalNameSpace = False
  38. Attribute VB_Creatable = False
  39. Attribute VB_PredeclaredId = True
  40. Attribute VB_Exposed = False
  41. Option Explicit
  42. Private Sub Command1_Click()
  43.     Me.Hide     '返回主窗体
  44. End Sub
  45. Private Sub Form_Load()
  46.     Me.Left = (Screen.Width - Me.ScaleWidth) / 2        '窗体居中显示
  47.     Me.Top = (Screen.Height - Me.ScaleHeight) / 2
  48. End Sub