📄 frmbasic1.frm
字号:
VERSION 5.00
Begin VB.Form frmBasic1
Caption = "Basic information"
ClientHeight = 2700
ClientLeft = 60
ClientTop = 450
ClientWidth = 6120
LinkTopic = "Form1"
ScaleHeight = 2700
ScaleWidth = 6120
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton cmdExit
Caption = "Cancel"
Height = 375
Left = 3600
TabIndex = 4
Top = 2040
Width = 1455
End
Begin VB.CommandButton cmdSave
Caption = "Save"
Height = 375
Left = 960
TabIndex = 3
Top = 2040
Width = 1335
End
Begin VB.Frame Frame2
Caption = "Basic Information"
Height = 1335
Left = 360
TabIndex = 5
Top = 360
Width = 5415
Begin VB.TextBox txtItem
Height = 270
Index = 2
Left = 1200
MaxLength = 50
TabIndex = 2
Top = 840
Width = 1335
End
Begin VB.TextBox txtItem
Height = 270
Index = 1
Left = 3840
MaxLength = 50
TabIndex = 1
Top = 360
Width = 1335
End
Begin VB.TextBox txtItem
Height = 270
Index = 0
Left = 1200
MaxLength = 50
TabIndex = 0
Top = 360
Width = 1335
End
Begin VB.Label Label2
Caption = "Base hours:"
Height = 255
Index = 4
Left = 120
TabIndex = 8
Top = 840
Width = 975
End
Begin VB.Label Label2
Caption = "Base days:"
Height = 255
Index = 3
Left = 2880
TabIndex = 7
Top = 360
Width = 975
End
Begin VB.Label Label2
Caption = "Check date:"
Height = 255
Index = 2
Left = 120
TabIndex = 6
Top = 360
Width = 1095
End
End
End
Attribute VB_Name = "frmBasic1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'是否改动过记录,ture为改过
Dim mblChange As Boolean
Dim mrc As ADODB.Recordset
Public txtSQL As String
Dim MsgText As String
'操作的表名称
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 2
If Trim(txtItem(intCount) & " ") = "" Then
Select Case intCount
Case 0
sMeg = "考勤日期"
Case 1
sMeg = "基本考勤天数"
Case 2
sMeg = "基本考勤小时数"
' Case 3
' sMeg = "开始时间"
' Case 4
' sMeg = "结束时间"
End Select
sMeg = sMeg & "不能为空!"
MsgBox sMeg, vbOKOnly + vbExclamation, "警告"
txtItem(intCount).SetFocus
Exit Sub
End If
Next intCount
If Trim(txtItem(0) & " ") <> "" Then
If Not IsDate(txtItem(0)) Then
MsgBox "考勤日期(yyyy-mm-dd)!", vbOKOnly + vbExclamation, "警告"
txtItem(0).SetFocus
Exit Sub
Else
txtItem(0) = Format(txtItem(0), "yyyy-mm-dd")
End If
End If
' If Trim(txtItem(4) & " ") <> "" Then
' If Not IsDate(txtItem(4)) Then
' MsgBox "结束日期(yyyy-mm-dd)!", vbOKOnly + vbExclamation, "警告"
' txtItem(4).SetFocus
' Exit Sub
' Else
' txtItem(4) = Format(txtItem(4), "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 BaseCheckTable where Checkdate='" & Trim(txtItem(0)) & "'"
' txtSQL = "select * from BaseCheckTable where Checkdate='" & Format(txtItem(0), "yyyy-mm-dd") & "'"
' 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 BaseCheckTable where Checkdate='" & Trim(txtItem(0)) & "'"
' Set mrc = ExecuteSQL(txtSQL, MsgText)
'再加入新记录
txtSQL = "select * from BaseCheckTable"
Set mrc = ExecuteSQL(txtSQL, MsgText)
' mrc.AddNew
For intCount = 0 To 2
mrc.Fields(intCount) = Trim(txtItem(intCount))
Next intCount
' For intCount = 3 To 18
' mrc.Fields(intCount + 1) = Trim(txtItem(intCount))
' Next intCount
mrc.Update
If gintMode = 1 Then
MsgBox "信息添加成功!", vbOKOnly + vbExclamation, "警告"
For i = 0 To 2
txtItem(i).Text = ""
mblChange = False
Next i
'txtItem(4).Text = ""
' mblChange = False
' txtItem(18).Text = ""
' mblChange = False
frmBasic1.Show
frmBasic1.ZOrder 0
frmBasic.ShowTitle
frmBasic.txtSQL = "select * from BaseCheckTable"
frmBasic.Showdata
frmBasic.ZOrder 1
Else
MsgBox "记录修改成功!", vbOKOnly + vbExclamation, "警告"
Unload Me
frmBasic.ShowTitle
frmBasic.txtSQL = "select * from BaseCheckTable"
frmBasic.Showdata
frmBasic.ZOrder 0
End If
gintMode = 0
End Sub
Private Sub Form_Load()
Dim MsgText As String
Dim intCount As Integer
If gintMode = 1 Then
Me.Caption = "Add New" & Me.Caption
' 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
End With
' txtItem(0).Enabled = False
End If
mrc.Close
Me.Caption = Me.Caption & "Modify"
End If
mblChange = False
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
Private Function GetNo() As String
GetNo = Format(Now, "yymmddhhmmss")
Randomize
GetNo = GetNo & Int((99 - 10 + 1) * Rnd + 10)
End Function
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -