📄 search_bk.frm
字号:
EndProperty
EndProperty
BeginProperty Column04
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 Column05
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 Column06
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 Column07
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 Column08
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
ColumnWidth = 1739.906
EndProperty
BeginProperty Column02
ColumnWidth = 1739.906
EndProperty
BeginProperty Column03
ColumnWidth = 989.858
EndProperty
BeginProperty Column04
ColumnWidth = 989.858
EndProperty
BeginProperty Column05
ColumnWidth = 1739.906
EndProperty
BeginProperty Column06
ColumnWidth = 1739.906
EndProperty
BeginProperty Column07
ColumnWidth = 734.74
EndProperty
BeginProperty Column08
ColumnWidth = 1739.906
EndProperty
EndProperty
End
Begin MSAdodcLib.Adodc Adodc1
Height = 330
Left = 960
Top = 0
Visible = 0 'False
Width = 1200
_ExtentX = 2117
_ExtentY = 582
ConnectMode = 0
CursorLocation = 3
IsolationLevel = -1
ConnectionTimeout= 15
CommandTimeout = 30
CursorType = 3
LockType = 3
CommandType = 8
CursorOptions = 0
CacheSize = 50
MaxRecords = 0
BOFAction = 0
EOFAction = 0
ConnectStringType= 1
Appearance = 1
BackColor = -2147483643
ForeColor = -2147483640
Orientation = 0
Enabled = -1
Connect = $"search_bk.frx":002A
OLEDBString = $"search_bk.frx":00B4
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = "select * from 图书基本信息表 where 是否在库='1'"
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin MSDataListLib.DataCombo DataCombo2
Bindings = "search_bk.frx":013E
Height = 315
Left = 2640
TabIndex = 6
Top = 4560
Width = 1575
_ExtentX = 2778
_ExtentY = 556
_Version = 393216
Style = 2
ListField = "图书种类"
Text = ""
End
Begin VB.Label Label3
BackColor = &H8000000D&
Caption = "图书种类"
Height = 255
Left = 1800
TabIndex = 4
Top = 4560
Width = 735
End
Begin VB.Label Label2
BackColor = &H8000000D&
Caption = "方式"
Height = 255
Left = 0
TabIndex = 3
Top = 4560
Width = 375
End
Begin VB.Label Label1
BackColor = &H8000000D&
Caption = "搜索"
Height = 255
Left = 0
TabIndex = 1
Top = 3960
Width = 375
End
End
Attribute VB_Name = "search_bk"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim n As Integer
Private Sub Command2_Click()
Adodc1.RecordSource = "multisearch '" & Trim(Text1.Text) & "'," & "'" & Trim(DataCombo1.Text) & "'," & "'" & Trim(DataCombo2.Text) & "'"
Adodc1.Refresh
End Sub
Private Sub Command3_Click()
Unload Me
End Sub
Private Sub DataGrid1_HeadClick(ByVal ColIndex As Integer)
If n = 0 Then
With Adodc1.Recordset
.Sort = .Fields(ColIndex).Name & " DESC"
End With
DataGrid1.Refresh
n = 1
Else
With Adodc1.Recordset
.Sort = .Fields(ColIndex).Name & " ASC"
End With
DataGrid1.Refresh
n = 0
End If
End Sub
Private Sub Form_Load()
n = 0
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -