📄 frm_readerfind.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Object = "{CDE57A40-8B86-11D0-B3C6-00A0C90AEA82}#1.0#0"; "MSDATGRD.OCX"
Begin VB.Form frm_ReaderFind
Caption = "读者信息查询"
ClientHeight = 5460
ClientLeft = 60
ClientTop = 345
ClientWidth = 9270
LinkTopic = "Form1"
ScaleHeight = 5460
ScaleWidth = 9270
StartUpPosition = 2 '屏幕中心
Begin MSComctlLib.ImageList ImageList1
Left = 6975
Top = 630
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 1
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "frm_ReaderFind.frx":0000
Key = ""
EndProperty
EndProperty
End
Begin MSComctlLib.Toolbar Toolbar1
Align = 1 'Align Top
Height = 555
Left = 0
TabIndex = 5
Top = 0
Width = 9270
_ExtentX = 16351
_ExtentY = 979
ButtonWidth = 820
ButtonHeight = 926
Appearance = 1
Style = 1
ImageList = "ImageList1"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 6
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 4
Object.Width = 100
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 4
Object.Width = 1800
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "性别"
Key = "tbSex"
ImageIndex = 1
Style = 5
BeginProperty ButtonMenus {66833FEC-8583-11D1-B16A-00C0F0283628}
NumButtonMenus = 2
BeginProperty ButtonMenu1 {66833FEE-8583-11D1-B16A-00C0F0283628}
Key = "tbSubMan"
Text = "男"
EndProperty
BeginProperty ButtonMenu2 {66833FEE-8583-11D1-B16A-00C0F0283628}
Key = "tbSubWoman"
Text = "女"
EndProperty
EndProperty
EndProperty
BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button6 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "查询"
Key = "tbFind"
ImageIndex = 1
EndProperty
EndProperty
Begin VB.Frame Frame2
Height = 555
Left = 5445
TabIndex = 7
Top = -45
Width = 2085
Begin VB.OptionButton optRF
Caption = "姓名"
Height = 285
Index = 0
Left = 90
TabIndex = 1
Top = 180
Width = 951
End
Begin VB.OptionButton optRF
Caption = "编号"
Height = 285
Index = 1
Left = 1035
TabIndex = 2
Top = 180
Width = 951
End
End
Begin VB.TextBox txtKey
Height = 330
Left = 3330
TabIndex = 0
Top = 135
Width = 1860
End
Begin VB.Frame Frame1
Height = 555
Left = 135
TabIndex = 6
Top = -45
Width = 1770
Begin VB.ComboBox cboType
Height = 300
Left = 90
Style = 2 'Dropdown List
TabIndex = 3
Top = 180
Width = 1590
End
End
End
Begin MSDataGridLib.DataGrid DataGrid1
Height = 4290
Left = 0
TabIndex = 4
Top = 630
Width = 6540
_ExtentX = 11536
_ExtentY = 7567
_Version = 393216
HeadLines = 1
RowHeight = 15
BeginProperty HeadFont {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ColumnCount = 2
BeginProperty Column00
DataField = ""
Caption = ""
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column01
DataField = ""
Caption = ""
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
SplitCount = 1
BeginProperty Split0
BeginProperty Column00
EndProperty
BeginProperty Column01
EndProperty
EndProperty
End
End
Attribute VB_Name = "frm_ReaderFind"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cboType_Click()
Dim rsR As New classCon
Dim rsRe As New ADODB.Recordset
Set rsRe = rsR.FindRecord(Trim(cboType.Text), "类型", "ReaderInfo")
Set DataGrid1.DataSource = rsRe
End Sub
Private Sub Form_Load()
Dim rsR As New classT
rsR.TypeRecord "ReaderType", cboType
End Sub
Private Sub Form_Resize()
DataGrid1.Width = Me.ScaleWidth - 50
DataGrid1.Height = Me.ScaleHeight - Toolbar1.Height - 100
End Sub
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Dim rsR As New classCon
Dim rsRe As New ADODB.Recordset
Dim sField As String
Dim i As Integer
sField = ""
For i = 0 To 1
If optRF.Item(i).Value = True Then
sField = optRF.Item(i).Caption
End If
Next i
Select Case Button.Key
Case Is = "tbFind"
Set rsRe = rsR.FindRecord(txtKey.Text, sField, "ReaderInfo")
Set DataGrid1.DataSource = rsRe
End Select
End Sub
Private Sub Toolbar1_ButtonMenuClick(ByVal ButtonMenu As MSComctlLib.ButtonMenu)
Dim rsR As New classCon
Dim rsRe As New ADODB.Recordset
Select Case ButtonMenu.Key
Case Is = "tbSubMan"
Set rsRe = rsR.FindRecord("男", "性别", "ReaderInfo")
Set DataGrid1.DataSource = rsRe
Case Is = "tbSubWoman"
Set rsRe = rsR.FindRecord("女", "性别", "ReaderInfo")
Set DataGrid1.DataSource = rsRe
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -