QueryFixed2.frm
上传用户:cntx88
上传日期:2022-08-07
资源大小:169k
文件大小:1k
- VERSION 5.00
- Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
- Begin VB.Form QueryFixed2
- Caption = "搜索结果"
- ClientHeight = 5025
- ClientLeft = 165
- ClientTop = 450
- ClientWidth = 8295
- LinkTopic = "Form1"
- LockControls = -1 'True
- ScaleHeight = 5025
- ScaleWidth = 8295
- StartUpPosition = 3 '窗口缺省
- Begin VB.CommandButton Command1
- Caption = "返回"
- Default = -1 'True
- Height = 495
- Left = 120
- TabIndex = 1
- Top = 4440
- Width = 8055
- End
- Begin MSFlexGridLib.MSFlexGrid MSFlexGrid1
- Height = 4215
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 8055
- _ExtentX = 14208
- _ExtentY = 7435
- _Version = 393216
- Cols = 5
- FixedCols = 0
- FillStyle = 1
- End
- End
- Attribute VB_Name = "QueryFixed2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- Me.Hide '返回主窗体
- End Sub
- Private Sub Form_Load()
- Me.Left = (Screen.Width - Me.ScaleWidth) / 2 '窗体居中显示
- Me.Top = (Screen.Height - Me.ScaleHeight) / 2
- End Sub