📄 lookbor.frm
字号:
VERSION 5.00
Object = "{67397AA1-7FB1-11D0-B148-00A0C922E820}#6.0#0"; "MSADODC.OCX"
Object = "{CDE57A40-8B86-11D0-B3C6-00A0C90AEA82}#1.0#0"; "MSDATGRD.OCX"
Begin VB.Form lookbor
Caption = "借书信息查询"
ClientHeight = 7170
ClientLeft = 60
ClientTop = 345
ClientWidth = 8640
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
ScaleHeight = 7170
ScaleWidth = 8640
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton cmdret
Caption = "返回"
Height = 615
Left = 3480
TabIndex = 6
Top = 6360
Width = 975
End
Begin MSAdodcLib.Adodc Adodc1
Height = 330
Left = 6360
Top = 6240
Visible = 0 'False
Width = 1935
_ExtentX = 3413
_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 = "driver={sql server};server=localhost;database=library_mis;uid=sa;pwd="
OLEDBString = "driver={sql server};server=localhost;database=library_mis;uid=sa;pwd="
OLEDBFile = ""
DataSourceName = ""
OtherAttributes = ""
UserName = ""
Password = ""
RecordSource = "select readerid from borrowinfo"
Caption = "Adodc1"
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
_Version = 393216
End
Begin VB.Frame Frame2
Caption = "借阅信息"
Height = 4455
Left = 120
TabIndex = 3
Top = 1680
Width = 8295
Begin MSDataGridLib.DataGrid DataGrid1
Bindings = "lookbor.frx":0000
Height = 3855
Left = 240
TabIndex = 4
Top = 360
Width = 7815
_ExtentX = 13785
_ExtentY = 6800
_Version = 393216
HeadLines = 1
RowHeight = 15
FormatLocked = -1 'True
BeginProperty HeadFont {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "宋体"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ColumnCount = 5
BeginProperty Column00
DataField = "bookid"
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 = "bookname"
Caption = "书名"
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column02
DataField = "borrowdate"
Caption = "借书日期"
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column03
DataField = "bookdays"
Caption = "借书期限"
BeginProperty DataFormat {6D835690-900B-11D0-9484-00A0C91110ED}
Type = 0
Format = ""
HaveTrueFalseNull= 0
FirstDayOfWeek = 0
FirstWeekOfYear = 0
LCID = 2052
SubFormatType = 0
EndProperty
EndProperty
BeginProperty Column04
DataField = "borrowtimes"
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
BeginProperty Column02
ColumnWidth = 1425.26
EndProperty
BeginProperty Column03
EndProperty
BeginProperty Column04
EndProperty
EndProperty
End
End
Begin VB.Frame Frame1
Caption = "请输入借书证号"
Height = 1095
Left = 1200
TabIndex = 0
Top = 240
Width = 5655
Begin VB.CommandButton cmdok
Caption = "确定"
Height = 495
Left = 3720
TabIndex = 5
Top = 360
Width = 735
End
Begin VB.TextBox txtreaderid
Height = 495
Left = 1320
TabIndex = 2
Top = 360
Width = 1935
End
Begin VB.Label Label1
Caption = "借书证号"
Height = 375
Left = 360
TabIndex = 1
Top = 480
Width = 855
End
End
End
Attribute VB_Name = "lookbor"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim mrc As ADODB.Recordset
Dim txtsql, msgtext As String
Private Sub cmdok_Click()
txtsql = "select * from readers where readerid='" & Trim(txtreaderid.Text) & "'"
Set mrc = ExecuteSQL(txtsql, msgtext)
If mrc.EOF = True Then
MsgBox "此借书证号不存在,请重新输入!", vbOKOnly + vbExclamation, "警告"
Else
mrc.Close
txtsql = "select readerid from borrowinfo where readerid='" & Trim(txtreaderid.Text) & "'"
Set mrc = ExecuteSQL(txtsql, msgtext)
If mrc.EOF = True Then
MsgBox "此借书证号上没有任何借书信息!", vbOKOnly, "警告"
Else
Adodc1.RecordSource = "select * from borrowinfo where readerid='" & Trim(txtreaderid.Text) & "'"
Adodc1.Refresh
End If
End If
End Sub
Private Sub cmdret_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -