frmBook.frm
上传用户:wang_li173
上传日期:2007-06-22
资源大小:43k
文件大小:5k
源码类别:

系统设计方案

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
  3. Begin VB.Form frmBook 
  4.    Caption         =   "书籍信息列表"
  5.    ClientHeight    =   3972
  6.    ClientLeft      =   60
  7.    ClientTop       =   348
  8.    ClientWidth     =   7680
  9.    LinkTopic       =   "Form1"
  10.    MDIChild        =   -1  'True
  11.    ScaleHeight     =   3972
  12.    ScaleWidth      =   7680
  13.    WindowState     =   2  'Maximized
  14.    Begin MSFlexGridLib.MSFlexGrid msgList 
  15.       Height          =   3132
  16.       Left            =   120
  17.       TabIndex        =   1
  18.       Top             =   720
  19.       Width           =   7452
  20.       _ExtentX        =   13145
  21.       _ExtentY        =   5525
  22.       _Version        =   393216
  23.       Cols            =   4
  24.       FixedCols       =   3
  25.       AllowUserResizing=   1
  26.    End
  27.    Begin VB.Label lblTitle 
  28.       Caption         =   "书  籍  信  息  列  表"
  29.       BeginProperty Font 
  30.          Name            =   "宋体"
  31.          Size            =   12
  32.          Charset         =   134
  33.          Weight          =   700
  34.          Underline       =   0   'False
  35.          Italic          =   0   'False
  36.          Strikethrough   =   0   'False
  37.       EndProperty
  38.       ForeColor       =   &H8000000D&
  39.       Height          =   255
  40.       Left            =   120
  41.       TabIndex        =   0
  42.       Top             =   240
  43.       Width           =   3015
  44.    End
  45. End
  46. Attribute VB_Name = "frmBook"
  47. Attribute VB_GlobalNameSpace = False
  48. Attribute VB_Creatable = False
  49. Attribute VB_PredeclaredId = True
  50. Attribute VB_Exposed = False
  51. Option Explicit
  52. Public txtSQL As String
  53. Dim mrc As ADODB.Recordset
  54. Dim MsgText As String
  55. Private Sub Form_Load()
  56.     
  57.     ShowTitle
  58.     ShowData
  59.     flagBedit = True
  60. End Sub
  61. Private Sub Form_Resize()
  62.     If Me.WindowState <> vbMinimized And fMainForm.WindowState <> vbMinimized Then
  63.         '边界处理
  64.         If Me.ScaleHeight < 10 * lblTitle.Height Then
  65.             
  66.             Exit Sub
  67.         End If
  68.         If Me.ScaleWidth < lblTitle.Width + lblTitle.Width / 2 Then
  69.             
  70.             Exit Sub
  71.         End If
  72.         '控制控件的位置
  73.                 
  74.         lblTitle.Top = lblTitle.Height
  75.         lblTitle.Left = (Me.Width - lblTitle.Width) / 2
  76.         
  77.         msgList.Top = lblTitle.Top + lblTitle.Height + lblTitle.Height / 2
  78.         msgList.Width = Me.ScaleWidth - 200
  79.         msgList.Left = Me.ScaleLeft + 100
  80.         msgList.Height = Me.ScaleHeight - msgList.Top - 200
  81.     End If
  82. End Sub
  83. Public Sub FormClose()
  84.     Unload Me
  85. End Sub
  86. Public Sub RecordFind()
  87.     frmMaterIn2.Show 1
  88.     If Trim(frmMaterIn2.sQSql & " ") <> "" Then
  89.         msSql = msSelect & msTableName & " where" & frmMaterIn2.sQSql & msOrderBy
  90.         ShowData
  91.     End If
  92.     Unload frmMaterIn2
  93. End Sub
  94. Private Sub Form_Unload(Cancel As Integer)
  95.     flagBedit = False
  96.     
  97.     gintBmode = 0
  98. End Sub
  99. '显示Grid的内容
  100. Private Sub ShowData()
  101.     
  102.     Dim j As Integer
  103.     Dim i As Integer
  104.   
  105.     Set mrc = ExecuteSQL(txtSQL, MsgText)
  106.         With msgList
  107.         .Rows = 1
  108.         
  109.         Do While Not mrc.EOF
  110.             .Rows = .Rows + 1
  111.             For i = 1 To mrc.Fields.Count
  112.                 Select Case mrc.Fields(i - 1).Type
  113.                     Case adDBDate
  114.                         .TextMatrix(.Rows - 1, i) = Format(mrc.Fields(i - 1) & "", "yyyy-mm-dd")
  115.                     Case Else
  116.                         .TextMatrix(.Rows - 1, i) = mrc.Fields(i - 1) & ""
  117.                 End Select
  118.             Next i
  119.             mrc.MoveNext
  120.         Loop
  121.         
  122.           
  123.     End With
  124.     mrc.Close
  125.     
  126.     
  127. End Sub
  128. '显示Grid表头
  129. Private Sub ShowTitle()
  130.     Dim i As Integer
  131.     
  132.     With msgList
  133.         .Cols = 12
  134.         .TextMatrix(0, 1) = ""
  135.         .TextMatrix(0, 2) = "书籍名称"
  136.         .TextMatrix(0, 3) = "书籍类别"
  137.         .TextMatrix(0, 4) = "作者姓名"
  138.         .TextMatrix(0, 5) = "出版社名称"
  139.         .TextMatrix(0, 6) = "出版日期"
  140.         .TextMatrix(0, 7) = "书籍页码"
  141.         .TextMatrix(0, 8) = "关键词"
  142.         .TextMatrix(0, 9) = "登记日期"
  143.         .TextMatrix(0, 10) = "是否被借"
  144.         .TextMatrix(0, 11) = "备注信息"
  145.        
  146.         
  147.         '固定表头
  148.         .FixedRows = 1
  149.                 
  150.         '设置各列的对齐方式
  151.         For i = 0 To 11
  152.             .ColAlignment(i) = 0
  153.         Next i
  154.         
  155.         
  156.         '表头项居中
  157.         .FillStyle = flexFillRepeat
  158.         .Col = 0
  159.         .Row = 0
  160.         .RowSel = 1
  161.         .ColSel = .Cols - 1
  162.         .CellAlignment = 4
  163.         
  164.         '设置单元大小
  165.         .ColWidth(0) = 1000
  166.         .ColWidth(1) = 0
  167.         .ColWidth(2) = 3000
  168.         .ColWidth(3) = 2000
  169.         .ColWidth(4) = 3000
  170.         .ColWidth(5) = 3000
  171.         .ColWidth(6) = 1000
  172.         .ColWidth(7) = 1000
  173.         .ColWidth(8) = 1000
  174.         .ColWidth(9) = 1000
  175.         .ColWidth(10) = 1000
  176.         .ColWidth(11) = 1000
  177.         
  178.         .Row = 1
  179.         
  180.     End With
  181. End Sub
  182. Private Sub msgList_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
  183.     '右键弹出
  184.     If Button = 2 And Shift = 0 Then
  185.         PopupMenu fMainForm.menuBooks
  186.     End If
  187.     
  188. End Sub