📄 frmexpedit.frm
字号:
VERSION 5.00
Begin VB.Form FrmExpEdit
Caption = "编辑学习与工作经历"
ClientHeight = 1965
ClientLeft = 60
ClientTop = 345
ClientWidth = 6525
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1965
ScaleWidth = 6525
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame1
Height = 1215
Left = 120
TabIndex = 2
Top = 0
Width = 6255
Begin VB.TextBox txtEnd_Date
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 = 100
TabIndex = 6
Top = 240
Width = 1335
End
Begin VB.TextBox txtStart_Date
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 = 5
Top = 285
Width = 1335
End
Begin VB.TextBox txtTitle
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 = 4
Top = 720
Width = 1335
End
Begin VB.TextBox txtSchool_Org
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 = 3
Top = 765
Width = 1335
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 = 10
Top = 360
Width = 720
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 = 9
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 = 8
Top = 840
Width = 810
End
Begin VB.Label Label8
AutoSize = -1 'True
BackColor = &H00FFC0C0&
BackStyle = 0 'Transparent
Caption = "截止日期"
Height = 180
Left = 3720
TabIndex = 7
Top = 360
Width = 720
End
End
Begin VB.CommandButton Cmd_Cancel
Cancel = -1 'True
Caption = "取 消"
Height = 400
Left = 3765
MouseIcon = "FrmExpEdit.frx":0000
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 1
Top = 1440
Width = 1300
End
Begin VB.CommandButton Cmd_OK
Caption = "确 定"
Default = -1 'True
Height = 400
Left = 1395
MouseIcon = "FrmExpEdit.frx":030A
MousePointer = 99 'Custom
Style = 1 'Graphical
TabIndex = 0
Top = 1440
Width = 1300
End
End
Attribute VB_Name = "FrmExpEdit"
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(txtStart_Date)) = 0 Then
MsgBox "请输入起始年月"
txtStart_Date.SetFocus
txtStart_Date.SelStart = 0
txtStart_Date.SelLength = Len(txtStart_Date)
Exit Sub
End If
If Len(Trim(txtEnd_Date)) = 0 Then
MsgBox "请输入截止年月"
txtEnd_Date.SetFocus
txtEnd_Date.SelStart = 0
txtEnd_Date.SelLength = Len(txtEnd_Date)
Exit Sub
End If
If Len(Trim(txtSchool_Org)) = 0 Then
MsgBox "请输入学校/单位"
txtSchool_Org.SetFocus
txtSchool_Org.SelStart = 0
txtSchool_Org.SelLength = Len(txtSchool_Org)
Exit Sub
End If
With MyExp
.Start_Date = MakeStr(txtStart_Date)
.End_Date = MakeStr(txtEnd_Date)
.School_Org = MakeStr(txtSchool_Org)
.Title = MakeStr(txtTitle)
If Modify = False Then
.Insert (VarEmpId)
Else
Call .Update(VarEmpId, OriId)
End If
End With
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -