?? 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 = 2055
Left = 240
TabIndex = 5
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 = 840
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 = 840
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 = 1440
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 = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 240
Left = 240
TabIndex = 10
Top = 360
Width = 1050
End
Begin VB.Label Label6
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "關 系"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 240
Left = 3360
TabIndex = 9
Top = 840
Width = 1185
End
Begin VB.Label Label4
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "年 齡"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 240
Left = 240
TabIndex = 8
Top = 840
Width = 1050
End
Begin VB.Label Label5
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "所在單位"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 240
Left = 240
TabIndex = 7
Top = 1440
Width = 1020
End
Begin VB.Label Label8
AutoSize = -1 'True
BackColor = &H00FFC0C0&
BackStyle = 0 'Transparent
Caption = "性 別"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 3360
TabIndex = 6
Top = 360
Width = 1185
End
End
Begin VB.Label LblOK
BackStyle = 0 'Transparent
Caption = "確 定"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 2280
MouseIcon = "FrmFamilyEdit.frx":0CE0
MousePointer = 99 'Custom
TabIndex = 12
Top = 2280
Width = 735
End
Begin VB.Image Image3
Height = 300
Left = 1680
Picture = "FrmFamilyEdit.frx":0FEA
Top = 2280
Width = 300
End
Begin VB.Label LblCancel
BackStyle = 0 'Transparent
Caption = "取 消"
BeginProperty Font
Name = "宋體"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 4320
MouseIcon = "FrmFamilyEdit.frx":1406
MousePointer = 99 'Custom
TabIndex = 11
Top = 2280
Width = 855
End
Begin VB.Image Image4
Height = 300
Left = 3720
Picture = "FrmFamilyEdit.frx":1710
Top = 2280
Width = 300
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 LblCancel_Click()
Unload Me
End Sub
Private Sub LblOK_Click()
If Len(Trim(TxtName)) = 0 Then
MsgBox "請輸入姓名"
TxtName.SetFocus
TxtName.SelStart = 0
TxtName.SelLength = Len(TxtName)
Exit Sub
End If
With MyFam
.Name = MakeStr(TxtName)
.Sex = Trim(ComboSex)
.Age = Val(txtAge)
.Relationship = MakeStr(txtRelation)
.WorkingOrg = MakeStr(txtWorkingOrg)
If Modify = False Then
.Insert (VarEmpId)
Else
Call .Update(VarEmpId, OriId)
End If
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 + -