frmReturn.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 frmReturn 
  4.    Caption         =   "还书信息列表"
  5.    ClientHeight    =   3276
  6.    ClientLeft      =   48
  7.    ClientTop       =   348
  8.    ClientWidth     =   7872
  9.    LinkTopic       =   "Form1"
  10.    MDIChild        =   -1  'True
  11.    ScaleHeight     =   3276
  12.    ScaleWidth      =   7872
  13.    Begin MSFlexGridLib.MSFlexGrid msgList 
  14.       Height          =   2292
  15.       Left            =   120
  16.       TabIndex        =   0
  17.       Top             =   600
  18.       Width           =   7572
  19.       _ExtentX        =   13356
  20.       _ExtentY        =   4043
  21.       _Version        =   393216
  22.       Cols            =   4
  23.       FixedCols       =   3
  24.       AllowUserResizing=   1
  25.    End
  26.    Begin VB.Label lblTitle 
  27.       Caption         =   "还  书  信  息  列  表"
  28.       BeginProperty Font 
  29.          Name            =   "宋体"
  30.          Size            =   12
  31.          Charset         =   134
  32.          Weight          =   700
  33.          Underline       =   0   'False
  34.          Italic          =   0   'False
  35.          Strikethrough   =   0   'False
  36.       EndProperty
  37.       ForeColor       =   &H8000000D&
  38.       Height          =   252
  39.       Left            =   120
  40.       TabIndex        =   1
  41.       Top             =   120
  42.       Width           =   3012
  43.    End
  44. End
  45. Attribute VB_Name = "frmReturn"
  46. Attribute VB_GlobalNameSpace = False
  47. Attribute VB_Creatable = False
  48. Attribute VB_PredeclaredId = True
  49. Attribute VB_Exposed = False
  50. Option Explicit
  51. Public txtSQL As String
  52. Dim mrc As ADODB.Recordset
  53. Dim MsgText As String
  54. Private Sub Form_Load()
  55.     
  56.     ShowTitle
  57.     ShowData
  58.     flagBBedit = True
  59. End Sub
  60. Private Sub Form_Resize()
  61.     If Me.WindowState <> vbMinimized And fMainForm.WindowState <> vbMinimized Then
  62.         '边界处理
  63.         If Me.ScaleHeight < 10 * lblTitle.Height Then
  64.             
  65.             Exit Sub
  66.         End If
  67.         If Me.ScaleWidth < lblTitle.Width + lblTitle.Width / 2 Then
  68.             
  69.             Exit Sub
  70.         End If
  71.         '控制控件的位置
  72.                 
  73.         lblTitle.Top = lblTitle.Height
  74.         lblTitle.Left = (Me.Width - lblTitle.Width) / 2
  75.         
  76.         msgList.Top = lblTitle.Top + lblTitle.Height + lblTitle.Height / 2
  77.         msgList.Width = Me.ScaleWidth - 200
  78.         msgList.Left = Me.ScaleLeft + 100
  79.         msgList.Height = Me.ScaleHeight - msgList.Top - 200
  80.     End If
  81. End Sub
  82. Public Sub FormClose()
  83.     Unload Me
  84.     
  85. End Sub
  86. Private Sub Form_Unload(Cancel As Integer)
  87.     flagBBedit = False
  88.     gintBBmode = 0
  89. End Sub
  90. '显示Grid的内容
  91. Private Sub ShowData()
  92.     
  93.     Dim j As Integer
  94.     Dim i As Integer
  95.   
  96.     Set mrc = ExecuteSQL(txtSQL, MsgText)
  97.         With msgList
  98.         .Rows = 1
  99.         
  100.         Do While Not mrc.EOF
  101.             .Rows = .Rows + 1
  102.             For i = 1 To mrc.Fields.Count
  103.                 Select Case mrc.Fields(i - 1).Type
  104.                     Case adDBDate
  105.                         .TextMatrix(.Rows - 1, i) = Format(mrc.Fields(i - 1) & "", "yyyy-mm-dd")
  106.                     Case Else
  107.                         .TextMatrix(.Rows - 1, i) = mrc.Fields(i - 1) & ""
  108.                 End Select
  109.             Next i
  110.             mrc.MoveNext
  111.         Loop
  112.         
  113.           
  114.     End With
  115.     mrc.Close
  116.     
  117.     
  118. End Sub
  119. '显示Grid表头
  120. Private Sub ShowTitle()
  121.     Dim i As Integer
  122.     
  123.     With msgList
  124.         .Cols = 9
  125.         .TextMatrix(0, 1) = ""
  126.         .TextMatrix(0, 2) = "读者编号"
  127.         .TextMatrix(0, 3) = "读者姓名"
  128.         .TextMatrix(0, 4) = "书籍编号"
  129.         .TextMatrix(0, 5) = "书籍名称"
  130.         .TextMatrix(0, 6) = "借出时间"
  131.         .TextMatrix(0, 7) = "还书日期"
  132.         .TextMatrix(0, 8) = "备注"
  133.         
  134.         
  135.         
  136.         '固定表头
  137.         .FixedRows = 1
  138.                 
  139.         '设置各列的对齐方式
  140.         For i = 0 To 8
  141.             .ColAlignment(i) = 0
  142.         Next i
  143.         
  144.         
  145.         '表头项居中
  146.         .FillStyle = flexFillRepeat
  147.         .Col = 0
  148.         .Row = 0
  149.         .RowSel = 1
  150.         .ColSel = .Cols - 1
  151.         .CellAlignment = 4
  152.         
  153.         '设置单元大小
  154.         .ColWidth(0) = 300
  155.         .ColWidth(1) = 0
  156.         .ColWidth(2) = 1000
  157.         .ColWidth(3) = 2000
  158.         .ColWidth(4) = 2000
  159.         .ColWidth(5) = 2000
  160.         .ColWidth(6) = 2000
  161.         .ColWidth(7) = 2000
  162.         .ColWidth(8) = 2000
  163.         
  164.         .Row = 1
  165.         
  166.     End With
  167. End Sub
  168. Private Sub msgList_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
  169.     '右键弹出
  170.     If Button = 2 And Shift = 0 Then
  171.         PopupMenu fMainForm.menuReturn
  172.     End If
  173.     
  174. End Sub