📄 frmmanrecord1.frm
字号:
VERSION 5.00
Begin VB.Form frmManRecord1
BorderStyle = 3 'Fixed Dialog
Caption = "Employee"
ClientHeight = 4245
ClientLeft = 45
ClientTop = 330
ClientWidth = 7635
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4245
ScaleWidth = 7635
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Tag = "ru"
Begin VB.Frame Frame4
Caption = "Other Information"
Height = 1455
Left = 240
TabIndex = 14
Top = 2040
Width = 6975
Begin VB.TextBox txtItem
Height = 975
Index = 18
Left = 960
MaxLength = 500
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 5
Top = 360
Width = 5775
End
Begin VB.Label Label2
Caption = "Notes:"
Height = 255
Index = 19
Left = 240
TabIndex = 15
Top = 360
Width = 975
End
End
Begin VB.Frame Frame1
Caption = "Personal Information"
Height = 1575
Left = 240
TabIndex = 8
Top = 240
Width = 6975
Begin VB.TextBox txtItem
Height = 270
Index = 3
Left = 1080
MaxLength = 30
TabIndex = 4
Top = 1080
Width = 2175
End
Begin VB.TextBox txtItem
Height = 270
Index = 0
Left = 1080
MaxLength = 30
TabIndex = 0
Top = 360
Width = 2175
End
Begin VB.TextBox txtItem
Height = 270
Index = 1
Left = 1080
MaxLength = 30
TabIndex = 2
Top = 720
Width = 2175
End
Begin VB.TextBox txtItem
Height = 270
Index = 2
Left = 4560
MaxLength = 30
TabIndex = 1
Top = 360
Width = 2175
End
Begin VB.ComboBox cboItem
Height = 315
Left = 4560
Style = 2 'Dropdown List
TabIndex = 3
Top = 720
Width = 2175
End
Begin VB.Label Label2
Caption = "ID :"
Height = 255
Index = 0
Left = 240
TabIndex = 13
Top = 360
Width = 975
End
Begin VB.Label Label2
Caption = "Name :"
Height = 255
Index = 1
Left = 240
TabIndex = 12
Top = 720
Width = 975
End
Begin VB.Label Label2
Caption = "Gender :"
Height = 255
Index = 2
Left = 3480
TabIndex = 11
Top = 720
Width = 975
End
Begin VB.Label Label2
Caption = "Position:"
Height = 255
Index = 13
Left = 240
TabIndex = 10
Top = 1080
Width = 975
End
Begin VB.Label Label2
Caption = "Department:"
Height = 255
Index = 16
Left = 3480
TabIndex = 9
Top = 360
Width = 975
End
End
Begin VB.CommandButton cmdExit
Caption = "Cancel"
Height = 375
Left = 6000
TabIndex = 7
Top = 3720
Width = 1215
End
Begin VB.CommandButton cmdSave
Caption = "Save (&S)"
Height = 375
Left = 4200
TabIndex = 6
Top = 3720
Width = 1215
End
End
Attribute VB_Name = "frmManRecord1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'是否改动过记录,ture为改过
Dim mblChange As Boolean
Public txtSQL As String
Dim mrc As ADODB.Recordset
'操作的表名称
Private Sub cboItem_Change()
'有变化设置gblchange
mblChange = True
End Sub
Private Sub cboItem_KeyDown(KeyCode As Integer, Shift As Integer)
EnterToTab KeyCode
End Sub
Private Sub cmdExit_Click()
If mblChange And cmdSave.Enabled Then
If MsgBox("保存当前记录的变化吗?", vbOKCancel + vbExclamation, "警告") = vbOK Then
'保存
Call cmdSave_Click
End If
End If
Unload Me
End Sub
Private Sub cmdSave_Click()
Dim intCount As Integer
Dim txtSQL As String
Dim MsgText As String
Dim sMeg As String
Dim i As Integer
For intCount = 0 To 3
If Trim(txtItem(intCount) & " ") = "" Then
Select Case intCount
Case 0
sMeg = "编号"
Case 1
sMeg = "姓名"
Case 2
sMeg = "部门"
Case 3
sMeg = "职位"
End Select
sMeg = sMeg & "不能为空!"
MsgBox sMeg, vbOKOnly + vbExclamation, "警告"
txtItem(intCount).SetFocus
Exit Sub
End If
Next intCount
'If Trim(txtItem(3) & " ") <> "" Then
' If Not IsDate(txtItem(3)) Then
' MsgBox "生日应输入日期(yyyy-mm-dd)!", vbOKOnly + vbExclamation, "警告"
' txtItem(3).SetFocus
'
' Exit Sub
'Else
' txtItem(3) = Format(txtItem(3), "yyyy-mm-dd")
' End If
' End If
' If Trim(txtItem(7) & " ") <> "" Then
' If Not IsDate(txtItem(7)) Then
' MsgBox "参加工作时间应输入日期(yyyy-mm-dd)!", vbOKOnly + vbExclamation, "警告"
' txtItem(7).SetFocus
' Exit Sub
' Else
' txtItem(7) = Format(txtItem(7), "yyyy-mm-dd")
' End If
' End If
' If Trim(txtItem(8) & " ") <> "" Then
' If Not IsDate(txtItem(8)) Then
' MsgBox "入党时间应输入日期(yyyy-mm-dd)!", vbOKOnly + vbExclamation, "警告"
' txtItem(8).SetFocus
' Exit Sub
' Else
' txtItem(8) = Format(txtItem(8), "yyyy-mm-dd")
' End If
' End If
' If Trim(txtItem(10) & "") <> "" Then
' If Not IsDate(txtItem(10)) Then
' MsgBox "职称时间应输入日期(yyyy-mm-dd)!", vbOKOnly + vbExclamation, "警告"
' txtItem(10).SetFocus
' Exit Sub
' Else
' txtItem(10) = Format(txtItem(10), "yyyy-mm-dd")
' End If
' End If
' If Trim(txtItem(14) & "") <> "" Then
' If Not IsDate(txtItem(14)) Then
' MsgBox "进入公司时间应输入日期(yyyy-mm-dd)!", vbOKOnly + vbExclamation, "警告"
' txtItem(14).SetFocus
' Exit Sub
' Else
' txtItem(14) = Format(txtItem(14), "yyyy-mm-dd")
' End If
' End If
' If Trim(txtItem(15) & "") <> "" Then
' If Not IsDate(txtItem(15)) Then
' MsgBox "起薪时间应输入日期(yyyy-mm-dd)!", vbOKOnly + vbExclamation, "警告"
' txtItem(15).SetFocus
' Exit Sub
' Else
' txtItem(15) = Format(txtItem(15), "yyyy-mm-dd")
' End If
' End If
' If Trim(txtItem(16) & "") <> "" Then
' If Not IsDate(txtItem(16)) Then
' MsgBox "调入时间应输入日期(yyyy-mm-dd)!", vbOKOnly + vbExclamation, "警告"
' txtItem(16).SetFocus
' Exit Sub
' Else
' txtItem(16) = Format(txtItem(16), "yyyy-mm-dd")
' End If
' End If
'添加判断是否有相同的ID记录
If gintMode = 1 Then
txtSQL = "select * from EmployeeTable where Em_id='" & Trim(txtItem(0)) & "'"
Set mrc = ExecuteSQL(txtSQL, MsgText)
If mrc.EOF = False Then
MsgBox "已经存在此员工档案编号的记录!", vbOKOnly + vbExclamation, "警告"
txtItem(0).SetFocus
txtItem(0).SelStart = 0
txtItem(0).SelLength = Len(txtItem(0))
Exit Sub
End If
mrc.Close
End If
'先删除已有记录
txtSQL = "delete from EmployeeTable where Em_id='" & Trim(txtItem(0)) & "'"
Set mrc = ExecuteSQL(txtSQL, MsgText)
'再加入新记录
txtSQL = "select * from EmployeeTable"
Set mrc = ExecuteSQL(txtSQL, MsgText)
mrc.AddNew
For intCount = 0 To 2
mrc.Fields(intCount) = Trim(txtItem(intCount))
Next intCount
mrc.Fields(3) = Trim(cboItem.Text)
' For intCount = 3 To 18
' mrc.Fields(intCount + 1) = Trim(txtItem(intCount))
mrc.Fields(4) = Trim(txtItem(3))
mrc.Fields(5) = Trim(txtItem(18))
' Next intCount
mrc.Update
If gintMode = 1 Then
MsgBox "记录添加成功!", vbOKOnly + vbExclamation, "警告"
For i = 0 To 2
txtItem(i).Text = ""
mblChange = False
Next i
txtItem(3).Text = ""
mblChange = False
txtItem(18).Text = ""
mblChange = False
frmManRecord1.Show
frmManRecord1.ZOrder 0
frmManRecord.ShowTitle
frmManRecord.txtSQL = "select * from EmployeeTable"
frmManRecord.Showdata
frmManRecord.ZOrder 1
Else
MsgBox "记录修改成功!", vbOKOnly + vbExclamation, "警告"
Unload Me
frmManRecord.ShowTitle
frmManRecord.txtSQL = "select * from EmployeeTable"
frmManRecord.Showdata
frmManRecord.ZOrder 0
End If
gintMode = 0
End Sub
Private Sub Form_Load()
Dim MsgText As String
Dim intCount As Integer
With cboItem
.AddItem "Male "
.AddItem "Female"
End With
If gintMode = 1 Then
Me.Caption = Me.Caption & "Input"
cboItem.ListIndex = 0
ElseIf gintMode = 2 Then
Set mrc = ExecuteSQL(txtSQL, MsgText)
If mrc.EOF = False Then
With mrc
For intCount = 0 To 2
txtItem(intCount) = .Fields(intCount)
Next intCount
' If Not IsNull(!Em_sex) Then
' cboItem = !Em_sex
' End If
' For intCount = 3 To 18
' If Not IsNull(.Fields(intCount + 1)) Then
' txtItem(intCount) = .Fields(intCount + 1)
' End If
' Next intCount
If Not IsNull(.Fields(4)) Then
txtItem(3) = .Fields(4)
End If
' If Not IsNull(.Fields(18)) Then
' txtItem(18) = .Fields(18)
' End If
End With
' txtItem(0).Enabled = False
End If
mrc.Close
Me.Caption = Me.Caption & "Modify"
End If
mblChange = False
End Sub
Private Sub Form_Unload(Cancel As Integer)
'MsgBox "realy want to quit?", vbOKOnly + vbExclamation, "quit"
End Sub
Private Sub txtItem_Change(Index As Integer)
'有变化设置gblchange
mblChange = True
End Sub
Private Sub txtItem_GotFocus(Index As Integer)
txtItem(Index).SelStart = 0
txtItem(Index).SelLength = Len(txtItem(Index))
End Sub
Private Sub txtItem_KeyDown(Index As Integer, KeyCode As Integer, Shift As Integer)
EnterToTab KeyCode
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -