📄 frmunlinkbookauthor.frm
字号:
VERSION 5.00
Begin VB.Form frmLinkBookAuthor
BorderStyle = 1 'Fixed Single
Caption = "Link Author to Book"
ClientHeight = 2205
ClientLeft = 45
ClientTop = 330
ClientWidth = 4905
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2205
ScaleWidth = 4905
StartUpPosition = 2 'CenterScreen
Begin VB.TextBox txtQuantity
Height = 375
Left = 4080
TabIndex = 9
Top = 960
Width = 735
End
Begin VB.CommandButton cmdlClose
Caption = "Cl&ose"
Height = 495
Left = 4080
TabIndex = 1
Top = 1560
Width = 735
End
Begin VB.CommandButton cmdAddAuthor
Caption = "&Link Author"
Height = 495
Left = 120
TabIndex = 0
Top = 1560
Width = 1095
End
Begin VB.Label Label5
Caption = "Additional book(s):"
Height = 255
Left = 2640
TabIndex = 8
Top = 1080
Width = 1335
End
Begin VB.Label Label6
Caption = "No. of Copies:"
Height = 255
Left = 240
TabIndex = 7
Top = 1080
Width = 1215
End
Begin VB.Label Label4
BorderStyle = 1 'Fixed Single
Height = 375
Left = 1560
TabIndex = 6
Top = 960
Width = 975
End
Begin VB.Label lblTitle
BorderStyle = 1 'Fixed Single
Height = 375
Left = 1560
TabIndex = 5
Top = 480
Width = 3255
End
Begin VB.Label lblBookID
BorderStyle = 1 'Fixed Single
Height = 375
Left = 1560
TabIndex = 4
Top = 0
Width = 3255
End
Begin VB.Label Label2
Caption = "Title:"
Height = 255
Left = 240
TabIndex = 3
Top = 600
Width = 855
End
Begin VB.Label Label1
Caption = "Reference #:"
Height = 255
Left = 240
TabIndex = 2
Top = 120
Width = 975
End
End
Attribute VB_Name = "frmLinkBookAuthor"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub LinkAuthorToBook()
Dim cn As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim intRow As Integer
cn.Open gblConnectionString
With rs
Set .ActiveConnection = cn
.CursorLocation = adUseClient
.CursorType = adOpenKeyset
.LockType = adLockOptimistic
.Open "SELECT * FROM BookAuthor WHERE 1=0"
For intRow = 1 To Me.grdAuthor.Rows - 1
If Me.grdAuthor.TextMatrix(intRow, colAuthorCheckBox) & "" <> "" Then
If Me.grdAuthor.TextMatrix(intRow, colAuthorCheckBox) = -1 Then
.AddNew
rs!BookID = Me.lblBookID.Caption
rs!AuthorID = Me.grdAuthor.TextMatrix(intRow, colAuthorID)
.Update
End If
End If
Next intRow
End With
Set cn = Nothing
Set rs = Nothing
End Sub
Public Sub DisplayBookAuthorByBookID()
Dim cn As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim intRow As Integer
cn.Open gblConnectionString
With rs
Set .ActiveConnection = cn
.CursorLocation = adUseClient
.CursorType = adOpenKeyset
.LockType = adLockOptimistic
.Open " SELECT Author.AuthorID, Author.FirstName + ' ' + Author.LastName as Author" & _
" FROM Author " & _
" LEFT JOIN BookAuthor ON Author.AuthorID = BookAuthor.AuthorID AND BookAuthor.BookID = " & Me.lblBookID.Caption & _
" WHERE BookAuthor.AuthorID IS NULL"
End With
With grdAuthor
.Rows = rs.RecordCount + 1
For intRow = 1 To rs.RecordCount
.TextMatrix(intRow, colAuthorID) = Format(rs!AuthorID, "000")
.TextMatrix(intRow, colAuthorName) = rs!Author
rs.MoveNext
Next intRow
End With
Set cn = Nothing
Set rs = Nothing
End Sub
Private Sub cmdAddAuthor_Click()
If Me.grdAuthor.FixedRows = Me.grdAuthor.Rows Then
MsgBox "Please select author to link.", vbInformation + vbOKOnly, App.ProductName
Exit Sub
End If
LinkAuthorToBook
MsgBox "Record saved.", vbInformation + vbOKOnly, App.ProductName
End Sub
Private Sub cmdlClose_Click()
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -