📄 frmfamilyedit.frm
字号:
VERSION 5.00
Begin VB.Form FrmFamilyEdit
BorderStyle = 1 'Fixed Single
Caption = "编辑家庭成员信息"
ClientHeight = 2775
ClientLeft = 45
ClientTop = 330
ClientWidth = 6720
Icon = "FrmFamilyEdit.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2775
ScaleWidth = 6720
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame1
Height = 1815
Left = 240
TabIndex = 7
Top = 120
Width = 6255
Begin VB.TextBox txtName
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
Left = 1440
MaxLength = 100
TabIndex = 0
Top = 285
Width = 1335
End
Begin VB.TextBox txtRelation
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
Left = 4680
MaxLength = 20
TabIndex = 3
Top = 720
Width = 1335
End
Begin VB.TextBox txtAge
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
Left = 1440
MaxLength = 50
TabIndex = 2
Top = 765
Width = 1335
End
Begin VB.TextBox txtWorkingOrg
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 330
Left = 1440
MaxLength = 100
TabIndex = 4
Top = 1200
Width = 4575
End
Begin VB.ComboBox ComboSex
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 345
ItemData = "FrmFamilyEdit.frx":0CCA
Left = 4680
List = "FrmFamilyEdit.frx":0CD4
Style = 2 'Dropdown List
TabIndex = 1
Top = 278
Width = 975
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "姓名"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 180
Left = 240
TabIndex = 12
Top = 360
Width = 360
End
Begin VB.Label Label6
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "关系"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 180
Left = 3720
TabIndex = 11
Top = 840
Width = 360
End
Begin VB.Label Label4
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "年龄"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 180
Left = 240
TabIndex = 10
Top = 840
Width = 360
End
Begin VB.Label Label5
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "所在单位"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 180
Left = 240
TabIndex = 9
Top = 1320
Width = 720
End
Begin VB.Label Label8
AutoSize = -1 'True
BackColor = &H00FFC0C0&
BackStyle = 0 'Transparent
Caption = "性别"
Height = 180
Left = 3720
TabIndex = 8
Top = 360
Width = 360
End
End
Begin VB.CommandButton Cmd_Cancel
Cancel = -1 'True
Caption = "取 消"
Height = 400
Left = 3900
MouseIcon = "FrmFamilyEdit.frx":0CE0
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 6
Top = 2160
Width = 1300
End
Begin VB.CommandButton Cmd_OK
Caption = "确 定"
Default = -1 'True
Height = 400
Left = 1530
MouseIcon = "FrmFamilyEdit.frx":0FEA
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 5
Top = 2160
Width = 1300
End
End
Attribute VB_Name = "FrmFamilyEdit"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public Modify As Boolean '插入=false,修改=true
Public VarEmpId As Long
Public OriId As Integer
Private Sub Cmd_Cancel_Click()
Unload Me
End Sub
Private Sub Cmd_OK_Click()
If Len(Trim(txtName)) = 0 Then
MsgBox "请输入姓名"
txtName.SetFocus
txtName.SelStart = 0
txtName.SelLength = Len(txtName)
Exit Sub
End If
'将用户输入的数据赋值到MyFam对象中
With MyFam
.EmpId = VarEmpId
.Name = MakeStr(txtName)
.Sex = Trim(ComboSex)
.Age = Val(txtAge)
.Relationship = MakeStr(txtRelation)
.WorkingOrg = MakeStr(txtWorkingOrg)
'保存数据
If Modify = False Then
.Insert
Else
Call .Update(OriId)
End If
MsgBox ("数据保存成功")
End With
Unload Me
End Sub
Private Sub txtAge_KeyPress(KeyAscii As Integer)
If In_Int(KeyAscii) = False Then
KeyAscii = 0
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -