seekresultview.frm

来自「关于图书馆管理的vfp程序」· FRM 代码 · 共 75 行

FRM
75
字号
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
Begin VB.Form Frm_SeekResultView 
   Caption         =   "查询结果显示"
   ClientHeight    =   4050
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   6450
   LinkTopic       =   "Form1"
   ScaleHeight     =   4050
   ScaleWidth      =   6450
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton cmdSeek 
      Caption         =   "返回查询"
      Height          =   495
      Left            =   5520
      TabIndex        =   2
      Top             =   2040
      Width           =   855
   End
   Begin VB.CommandButton cmdPrint 
      Caption         =   "打印输出"
      Height          =   495
      Left            =   5520
      TabIndex        =   1
      Top             =   720
      Width           =   855
   End
   Begin VB.Data AdoCmpdSeek 
      Caption         =   "Data1"
      Connect         =   "Access"
      DatabaseName    =   ""
      DefaultCursorType=   0  '缺省游标
      DefaultType     =   2  '使用 ODBC
      Exclusive       =   0   'False
      Height          =   345
      Left            =   1200
      Options         =   0
      ReadOnly        =   0   'False
      RecordsetType   =   1  'Dynaset
      RecordSource    =   ""
      Top             =   3000
      Visible         =   0   'False
      Width           =   3375
   End
   Begin MSFlexGridLib.MSFlexGrid DataGridSeek 
      Bindings        =   "SeekResultView.frx":0000
      Height          =   4095
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   5415
      _ExtentX        =   9551
      _ExtentY        =   7223
      _Version        =   393216
      Cols            =   10
      FixedCols       =   0
   End
End
Attribute VB_Name = "Frm_SeekResultView"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub cmdPrint_Click()
Frm_Print.Show
End Sub

Private Sub cmdSeek_Click()
Unload Me
Frm_MutiQuery.Show
Frm_MutiQuery.Cmd_Clear_Click
End Sub

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?