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