⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frminputs.frm

📁 一个完整的图书管理系统
💻 FRM
字号:
VERSION 5.00
Object = "{E95A2510-F3D1-416D-823B-4F840FE98091}#3.0#0"; "Command.ocx"
Begin VB.Form frmInputS 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "查询条件对话框"
   ClientHeight    =   2340
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   6240
   Icon            =   "frmInputS.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2340
   ScaleWidth      =   6240
   StartUpPosition =   2  '屏幕中心
   Begin VB.Frame Frame1 
      Caption         =   "选择查找方式"
      Height          =   615
      Left            =   480
      TabIndex        =   2
      Top             =   240
      Width           =   3735
      Begin VB.OptionButton optOperName 
         Caption         =   " 用户姓名"
         Height          =   255
         Left            =   2160
         TabIndex        =   4
         Top             =   240
         Width           =   1215
      End
      Begin VB.OptionButton optOperID 
         Caption         =   " 用户 ID"
         Height          =   255
         Left            =   600
         TabIndex        =   3
         Top             =   240
         Value           =   -1  'True
         Width           =   1215
      End
   End
   Begin VB.TextBox txtSQLString 
      Height          =   375
      Left            =   480
      TabIndex        =   0
      Top             =   1560
      Width           =   3735
   End
   Begin CSCommand.Command cmdOK 
      Height          =   600
      Left            =   4680
      TabIndex        =   5
      Top             =   600
      Width           =   1050
      _ExtentX        =   1852
      _ExtentY        =   1058
      PICMaskColor    =   16711680
      Icon            =   "frmInputS.frx":0442
      Caption         =   "查询"
      BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      FontColor       =   32768
      DisabledFontColor=   32768
      ShowFocus       =   0   'False
      Appearance      =   2
      BackStyle       =   0
   End
   Begin CSCommand.Command cmdCancel 
      Height          =   600
      Left            =   4680
      TabIndex        =   6
      Top             =   1320
      Width           =   1050
      _ExtentX        =   1852
      _ExtentY        =   1058
      PICMaskColor    =   16711680
      Icon            =   "frmInputS.frx":075C
      Caption         =   "取消"
      BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      FontColor       =   32768
      DisabledFontColor=   32768
      ShowFocus       =   0   'False
      Appearance      =   2
      BackStyle       =   0
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      Caption         =   "清输入需要查找的用户ID 或用户姓名:"
      Height          =   180
      Left            =   600
      TabIndex        =   1
      Top             =   1200
      Width           =   3150
   End
End
Attribute VB_Name = "frmInputS"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub cmdCancel_Click()
    operSQLcancel = True '取消操作控制
    Unload frmInputS

End Sub

Private Sub cmdOK_Click()
    OperSQLsTring = txtSQLString.Text
    Unload frmInputS
End Sub

Private Sub Form_Load()
    operSQLcancel = False
    optSel = 1
End Sub

Private Sub optOperID_Click()
    If optOperID.Value = True Then
        optSel = 1
    End If
End Sub

Private Sub optOperName_Click()
    If optOperName.Value = True Then
        optSel = 2
    End If
End Sub

⌨️ 快捷键说明

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