frmBook.frm
资源名称:图书馆管理系统11.rar [点击查看]
上传用户:wang_li173
上传日期:2007-06-22
资源大小:43k
文件大小:5k
源码类别:
系统设计方案
开发平台:
Visual Basic
- VERSION 5.00
- Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
- Begin VB.Form frmBook
- Caption = "书籍信息列表"
- ClientHeight = 3972
- ClientLeft = 60
- ClientTop = 348
- ClientWidth = 7680
- LinkTopic = "Form1"
- MDIChild = -1 'True
- ScaleHeight = 3972
- ScaleWidth = 7680
- WindowState = 2 'Maximized
- Begin MSFlexGridLib.MSFlexGrid msgList
- Height = 3132
- Left = 120
- TabIndex = 1
- Top = 720
- Width = 7452
- _ExtentX = 13145
- _ExtentY = 5525
- _Version = 393216
- Cols = 4
- FixedCols = 3
- AllowUserResizing= 1
- End
- Begin VB.Label lblTitle
- Caption = "书 籍 信 息 列 表"
- BeginProperty Font
- Name = "宋体"
- Size = 12
- Charset = 134
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H8000000D&
- Height = 255
- Left = 120
- TabIndex = 0
- Top = 240
- Width = 3015
- End
- End
- Attribute VB_Name = "frmBook"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Public txtSQL As String
- Dim mrc As ADODB.Recordset
- Dim MsgText As String
- Private Sub Form_Load()
- ShowTitle
- ShowData
- flagBedit = True
- End Sub
- Private Sub Form_Resize()
- If Me.WindowState <> vbMinimized And fMainForm.WindowState <> vbMinimized Then
- '边界处理
- If Me.ScaleHeight < 10 * lblTitle.Height Then
- Exit Sub
- End If
- If Me.ScaleWidth < lblTitle.Width + lblTitle.Width / 2 Then
- Exit Sub
- End If
- '控制控件的位置
- lblTitle.Top = lblTitle.Height
- lblTitle.Left = (Me.Width - lblTitle.Width) / 2
- msgList.Top = lblTitle.Top + lblTitle.Height + lblTitle.Height / 2
- msgList.Width = Me.ScaleWidth - 200
- msgList.Left = Me.ScaleLeft + 100
- msgList.Height = Me.ScaleHeight - msgList.Top - 200
- End If
- End Sub
- Public Sub FormClose()
- Unload Me
- End Sub
- Public Sub RecordFind()
- frmMaterIn2.Show 1
- If Trim(frmMaterIn2.sQSql & " ") <> "" Then
- msSql = msSelect & msTableName & " where" & frmMaterIn2.sQSql & msOrderBy
- ShowData
- End If
- Unload frmMaterIn2
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- flagBedit = False
- gintBmode = 0
- End Sub
- '显示Grid的内容
- Private Sub ShowData()
- Dim j As Integer
- Dim i As Integer
- Set mrc = ExecuteSQL(txtSQL, MsgText)
- With msgList
- .Rows = 1
- Do While Not mrc.EOF
- .Rows = .Rows + 1
- For i = 1 To mrc.Fields.Count
- Select Case mrc.Fields(i - 1).Type
- Case adDBDate
- .TextMatrix(.Rows - 1, i) = Format(mrc.Fields(i - 1) & "", "yyyy-mm-dd")
- Case Else
- .TextMatrix(.Rows - 1, i) = mrc.Fields(i - 1) & ""
- End Select
- Next i
- mrc.MoveNext
- Loop
- End With
- mrc.Close
- End Sub
- '显示Grid表头
- Private Sub ShowTitle()
- Dim i As Integer
- With msgList
- .Cols = 12
- .TextMatrix(0, 1) = ""
- .TextMatrix(0, 2) = "书籍名称"
- .TextMatrix(0, 3) = "书籍类别"
- .TextMatrix(0, 4) = "作者姓名"
- .TextMatrix(0, 5) = "出版社名称"
- .TextMatrix(0, 6) = "出版日期"
- .TextMatrix(0, 7) = "书籍页码"
- .TextMatrix(0, 8) = "关键词"
- .TextMatrix(0, 9) = "登记日期"
- .TextMatrix(0, 10) = "是否被借"
- .TextMatrix(0, 11) = "备注信息"
- '固定表头
- .FixedRows = 1
- '设置各列的对齐方式
- For i = 0 To 11
- .ColAlignment(i) = 0
- Next i
- '表头项居中
- .FillStyle = flexFillRepeat
- .Col = 0
- .Row = 0
- .RowSel = 1
- .ColSel = .Cols - 1
- .CellAlignment = 4
- '设置单元大小
- .ColWidth(0) = 1000
- .ColWidth(1) = 0
- .ColWidth(2) = 3000
- .ColWidth(3) = 2000
- .ColWidth(4) = 3000
- .ColWidth(5) = 3000
- .ColWidth(6) = 1000
- .ColWidth(7) = 1000
- .ColWidth(8) = 1000
- .ColWidth(9) = 1000
- .ColWidth(10) = 1000
- .ColWidth(11) = 1000
- .Row = 1
- End With
- End Sub
- Private Sub msgList_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
- '右键弹出
- If Button = 2 And Shift = 0 Then
- PopupMenu fMainForm.menuBooks
- End If
- End Sub