QueryFixed2.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 QueryFixed2 
  4.    Caption         =   "搜索结果"
  5.    ClientHeight    =   5025
  6.    ClientLeft      =   165
  7.    ClientTop       =   450
  8.    ClientWidth     =   8295
  9.    LinkTopic       =   "Form1"
  10.    LockControls    =   -1  'True
  11.    ScaleHeight     =   5025
  12.    ScaleWidth      =   8295
  13.    StartUpPosition =   3  '窗口缺省
  14.    Begin VB.CommandButton Command1 
  15.       Caption         =   "返回"
  16.       Default         =   -1  'True
  17.       Height          =   495
  18.       Left            =   120
  19.       TabIndex        =   1
  20.       Top             =   4440
  21.       Width           =   8055
  22.    End
  23.    Begin MSFlexGridLib.MSFlexGrid MSFlexGrid1 
  24.       Height          =   4215
  25.       Left            =   120
  26.       TabIndex        =   0
  27.       Top             =   120
  28.       Width           =   8055
  29.       _ExtentX        =   14208
  30.       _ExtentY        =   7435
  31.       _Version        =   393216
  32.       Cols            =   5
  33.       FixedCols       =   0
  34.       FillStyle       =   1
  35.    End
  36. End
  37. Attribute VB_Name = "QueryFixed2"
  38. Attribute VB_GlobalNameSpace = False
  39. Attribute VB_Creatable = False
  40. Attribute VB_PredeclaredId = True
  41. Attribute VB_Exposed = False
  42. Option Explicit
  43. Private Sub Command1_Click()
  44.     Me.Hide     '返回主窗体
  45. End Sub
  46. Private Sub Form_Load()
  47.     Me.Left = (Screen.Width - Me.ScaleWidth) / 2        '窗体居中显示
  48.     Me.Top = (Screen.Height - Me.ScaleHeight) / 2
  49. End Sub