📄 frmlistch.frm
字号:
VERSION 5.00
Begin VB.Form frmListCH
BorderStyle = 3 'Fixed Dialog
Caption = "持卡人详细信息"
ClientHeight = 5580
ClientLeft = 45
ClientTop = 330
ClientWidth = 5085
Icon = "frmListCH.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5580
ScaleWidth = 5085
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
Caption = "持卡人详细信息"
Height = 4935
Left = 240
TabIndex = 0
Top = 240
Width = 4695
Begin VB.TextBox txtCH_Memo
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1455
Left = 360
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 1
Top = 3120
Width = 3975
End
Begin VB.Label lblStateList
Caption = "Lab"
Height = 255
Left = 3240
TabIndex = 18
Top = 2040
Width = 375
End
Begin VB.Label lblState
AutoSize = -1 'True
Caption = "状态:"
Height = 180
Left = 2400
TabIndex = 17
Top = 2040
Width = 540
End
Begin VB.Label lblCH_Memo
AutoSize = -1 'True
Caption = "持卡人描述:"
Height = 180
Left = 360
TabIndex = 16
Top = 2640
Width = 1080
End
Begin VB.Label lblMoneyList
AutoSize = -1 'True
Caption = "11"
Height = 180
Left = 1200
TabIndex = 15
Top = 2040
Width = 180
End
Begin VB.Label lblMoney
AutoSize = -1 'True
Caption = "金额:"
Height = 180
Left = 360
TabIndex = 14
Top = 2040
Width = 540
End
Begin VB.Label lblST_NameList
AutoSize = -1 'True
Caption = "11"
Height = 180
Left = 1200
TabIndex = 13
Top = 1080
Width = 180
End
Begin VB.Label lblST_Name
AutoSize = -1 'True
Caption = "类别:"
Height = 180
Left = 360
TabIndex = 12
Top = 1080
Width = 540
End
Begin VB.Label lblC_IDList
AutoSize = -1 'True
Caption = "11"
Height = 180
Left = 3270
TabIndex = 11
Top = 1560
Width = 180
End
Begin VB.Label lblC_ID
AutoSize = -1 'True
Caption = "班级:"
Height = 180
Left = 2400
TabIndex = 10
Top = 1560
Width = 540
End
Begin VB.Label lblS_NameList
AutoSize = -1 'True
Caption = "11"
Height = 180
Left = 1200
TabIndex = 9
Top = 1560
Width = 180
End
Begin VB.Label lblS_Name
AutoSize = -1 'True
Caption = "专业:"
Height = 180
Left = 360
TabIndex = 8
Top = 1560
Width = 540
End
Begin VB.Label lblI_NameList
AutoSize = -1 'True
Caption = "10"
Height = 180
Left = 3270
TabIndex = 7
Top = 1080
Width = 180
End
Begin VB.Label lblI_Name
AutoSize = -1 'True
Caption = "院系:"
Height = 180
Left = 2400
TabIndex = 6
Top = 1080
Width = 540
End
Begin VB.Label lblCH_NameList
AutoSize = -1 'True
Caption = "11"
Height = 180
Left = 3270
TabIndex = 5
Top = 600
Width = 180
End
Begin VB.Label lblCH_Name
AutoSize = -1 'True
Caption = "姓名:"
Height = 180
Left = 2400
TabIndex = 4
Top = 600
Width = 540
End
Begin VB.Label lblCH_ID
AutoSize = -1 'True
Caption = "卡号:"
Height = 180
Left = 360
TabIndex = 3
Top = 600
Width = 540
End
Begin VB.Label lblCH_IDList
AutoSize = -1 'True
Caption = "11"
Height = 180
Left = 1200
TabIndex = 2
Top = 600
Width = 180
End
End
End
Attribute VB_Name = "frmListCH"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
With frmCHFind.itmX
lblCH_IDList.Caption = .Text '给卡号赋值
lblST_NameList.Caption = .SubItems(1) '给类别赋值
lblCH_NameList.Caption = .SubItems(2) '给姓名赋值
lblI_NameList.Caption = .SubItems(3) '给院系赋值
lblS_NameList.Caption = .SubItems(4) '给专业赋值
lblC_IDList.Caption = .SubItems(5) '给班级赋值
lblMoneyList.Caption = .SubItems(6) '给金额赋值
lblStateList.Caption = .SubItems(7) '给状态赋值
txtCH_Memo.Text = .SubItems(8) '给持卡人描述赋值
End With
txtCH_Memo.Enabled = False
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -