📄 aeditbookid.frm
字号:
VERSION 5.00
Begin VB.Form AEditBookId
BackColor = &H00D0D0D0&
BorderStyle = 3 'Fixed Dialog
Caption = "修改查询人资料"
ClientHeight = 2940
ClientLeft = 45
ClientTop = 330
ClientWidth = 5190
Icon = "AEditBookId.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2940
ScaleWidth = 5190
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame2
BackColor = &H005CE764&
Height = 60
Left = -60
TabIndex = 13
Top = 2175
Width = 5295
End
Begin VB.CommandButton cmdOkCancel
BackColor = &H00FFFFFF&
Cancel = -1 'True
Caption = "取消(&C)"
Height = 375
Index = 1
Left = 3615
Style = 1 'Graphical
TabIndex = 12
Top = 2370
Width = 975
End
Begin VB.CommandButton cmdOkCancel
BackColor = &H00FFFFFF&
Caption = "保存(&E)"
Height = 375
Index = 0
Left = 2655
Style = 1 'Graphical
TabIndex = 11
Top = 2370
Width = 975
End
Begin VB.Frame Frame1
BackColor = &H00E0E0E0&
Height = 2325
Left = -45
TabIndex = 0
Top = -120
Width = 5295
Begin VB.TextBox txtBookId
Height = 270
Left = 1080
TabIndex = 5
Top = 930
Width = 1455
End
Begin VB.TextBox txtBookIdName
Height = 270
Left = 3480
TabIndex = 4
Top = 930
Width = 1455
End
Begin VB.TextBox txtBookIdClass
Height = 270
Left = 1080
TabIndex = 3
Top = 1395
Width = 1455
End
Begin VB.TextBox txtBookIdDepart
Height = 270
Left = 3480
TabIndex = 2
Top = 1395
Width = 1455
End
Begin VB.TextBox txtBookIdZhi
Height = 270
Left = 1080
TabIndex = 1
Top = 1845
Width = 1455
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "查询人资料信息"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 210
Left = 585
TabIndex = 14
Top = 375
Width = 1470
End
Begin VB.Image Image1
Height = 480
Left = 60
Picture = "AEditBookId.frx":058A
Top = 135
Width = 480
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "证件 号"
Height = 180
Index = 0
Left = 240
TabIndex = 10
Top = 930
Width = 720
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "姓 名"
Height = 180
Index = 1
Left = 2640
TabIndex = 9
Top = 930
Width = 720
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "班 组"
Height = 180
Index = 2
Left = 240
TabIndex = 8
Top = 1425
Width = 720
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "部 门"
Height = 180
Index = 3
Left = 2640
TabIndex = 7
Top = 1395
Width = 720
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "职 称"
Height = 180
Index = 4
Left = 240
TabIndex = 6
Top = 1890
Width = 720
End
End
End
Attribute VB_Name = "AEditBookId"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdOkCancel_Click(Index As Integer)
Select Case Index
Case 0
mAddEditId = txtBookId & vbNullString
mAddEditIdName = txtBookIdName & vbNullString
mAddEditIdClass = txtBookIdClass & vbNullString & " "
mAddEditIdDepart = txtBookIdDepart & vbNullString & " "
mAddEditIdZhi = txtBookIdZhi & vbNullString & " "
mSave = True
Unload Me
Case 1
mSave = False
Unload Me
End Select
End Sub
Private Sub Form_Load()
txtBookId.Text = mAddEditId
txtBookIdName = mAddEditIdName
txtBookIdClass = mAddEditIdClass
txtBookIdDepart = mAddEditIdDepart
txtBookIdZhi = mAddEditIdZhi
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -