📄 frmweiji.frm
字号:
VERSION 5.00
Begin VB.Form frmweiji
Caption = "违纪扣分测评"
ClientHeight = 4260
ClientLeft = 60
ClientTop = 345
ClientWidth = 6285
LinkTopic = "Form1"
MaxButton = 0 'False
MDIChild = -1 'True
ScaleHeight = 4260
ScaleWidth = 6285
Begin VB.Frame Frame2
Caption = "班级学期扣分情况"
Height = 855
Left = 240
TabIndex = 19
Top = 2280
Width = 5775
Begin VB.TextBox Text2
Height = 375
Left = 3240
TabIndex = 20
Top = 240
Width = 1215
End
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "该班级本学期中共计扣分"
Height = 180
Left = 840
TabIndex = 21
Top = 330
Width = 1980
End
End
Begin VB.Frame Frame3
Caption = "操作"
Height = 855
Left = 240
TabIndex = 16
Top = 3240
Width = 5775
Begin VB.CommandButton Command1
Caption = "确定"
Height = 375
Left = 1080
TabIndex = 18
Top = 360
Width = 975
End
Begin VB.CommandButton Command2
Caption = "取消"
Height = 375
Left = 3600
TabIndex = 17
Top = 360
Width = 975
End
End
Begin VB.Frame Frame1
Caption = "基本信息"
Height = 2055
Index = 0
Left = 240
TabIndex = 0
Top = 120
Width = 5775
Begin VB.ComboBox Combo1
Height = 300
Left = 960
TabIndex = 6
Text = "选择"
Top = 300
Width = 1215
End
Begin VB.TextBox Text1
Enabled = 0 'False
Height = 375
Left = 3720
TabIndex = 5
Top = 240
Width = 1815
End
Begin VB.ComboBox Combo3
Height = 300
Index = 0
ItemData = "frmweiji.frx":0000
Left = 960
List = "frmweiji.frx":0010
TabIndex = 4
Top = 1020
Width = 1095
End
Begin VB.ComboBox Combo4
Height = 300
Index = 0
ItemData = "frmweiji.frx":002C
Left = 2655
List = "frmweiji.frx":0054
TabIndex = 3
Top = 1020
Width = 1095
End
Begin VB.ComboBox Combo3
Height = 300
Index = 1
ItemData = "frmweiji.frx":007F
Left = 960
List = "frmweiji.frx":008F
TabIndex = 2
Top = 1560
Width = 1095
End
Begin VB.ComboBox Combo4
Height = 300
Index = 1
ItemData = "frmweiji.frx":00AB
Left = 2655
List = "frmweiji.frx":00D3
TabIndex = 1
Top = 1560
Width = 1095
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "班级"
Height = 180
Left = 360
TabIndex = 15
Top = 360
Width = 360
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "班主任姓名"
Height = 180
Left = 2520
TabIndex = 14
Top = 360
Width = 900
End
Begin VB.Label Label7
AutoSize = -1 'True
Caption = "学期"
Height = 180
Left = 360
TabIndex = 13
Top = 1080
Width = 360
End
Begin VB.Label Label8
AutoSize = -1 'True
Caption = "年"
Height = 180
Index = 0
Left = 2265
TabIndex = 12
Top = 1080
Width = 180
End
Begin VB.Label Label9
AutoSize = -1 'True
Caption = "月"
Height = 180
Index = 0
Left = 3960
TabIndex = 11
Top = 1080
Width = 180
End
Begin VB.Label Label8
AutoSize = -1 'True
Caption = "年"
Height = 180
Index = 1
Left = 2265
TabIndex = 10
Top = 1620
Width = 180
End
Begin VB.Label Label9
AutoSize = -1 'True
Caption = "月"
Height = 180
Index = 1
Left = 3960
TabIndex = 9
Top = 1620
Width = 180
End
Begin VB.Label Label10
AutoSize = -1 'True
Caption = "学期开始"
Height = 180
Left = 4560
TabIndex = 8
Top = 1080
Width = 720
End
Begin VB.Label Label11
AutoSize = -1 'True
Caption = "学期结束"
Height = 180
Left = 4560
TabIndex = 7
Top = 1620
Width = 720
End
End
End
Attribute VB_Name = "frmweiji"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Me.Height = 4665
Me.Width = 6405
Dim mrccc As ADODB.Recordset
Dim msgtext As String
Dim txtSQL As String
' Combo1.Clear
txtSQL = "select id from class"
Set mrccc = ExecuteSQL(txtSQL, msgtext)
Do While Not mrccc.EOF
Combo1.AddItem mrccc.Fields(0)
mrccc.MoveNext
Loop
mrccc.Close
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Combo1_Click()
Dim mrccc As ADODB.Recordset
Dim msgtext As String
Dim txtSQL As String
Dim aa As String
txtSQL = "select name1 from teacher where class='" & Combo1 & "' "
Set mrccc = ExecuteSQL(txtSQL, msgtext)
If Not mrccc.EOF Then
Text1.Text = mrccc.Fields(0)
Else: MsgBox "该班级没有班主任,检查数据库设置"
End If
End Sub
Private Sub Command1_Click()
Dim intcount As Integer
Dim smg, smg1, zong As String
Dim mr As ADODB.Recordset
Dim msgtext As String
If Trim(Combo1 & "") = "选择" Then
MsgBox "请选择班级", vbOKOnly + vbExclamation, "警告"
Exit Sub
End If
If Trim(Combo3(0) & "") = "" Then
MsgBox "请选择年份", vbOKOnly + vbExclamation, "警告"
Exit Sub
End If
If Trim(Combo4(0) & "") = "" Then
MsgBox "请选择月份", vbOKOnly + vbExclamation, "警告"
Exit Sub
End If
If Trim(Combo3(1) & "") = "" Then
MsgBox "请选择年份", vbOKOnly + vbExclamation, "警告"
Exit Sub
End If
If Trim(Combo4(1) & "") = "" Then
MsgBox "请选择月份", vbOKOnly + vbExclamation, "警告"
Exit Sub
End If
smg = Format(CDate(Combo3(0) & "-" & Combo4(0) & "-" & "1"), "yyyy-mm-dd")
smg1 = Format(CDate(Combo3(1) & "-" & Combo4(1) & "-" & "1"), "yyyy-mm-dd")
If smg1 <= smg Then
MsgBox "错误!请检查学期的起止日期", vbOKOnly + vbExclamation, "警告"
Exit Sub
End If
txtSQL = "select sum(koufen) from kaohe where class='" & Trim(Combo1) & "' and yuefen>='" & smg & "' and yuefen<='" & smg1 & "'"
Set mr = ExecuteSQL(txtSQL, msgtext)
If Not mr.EOF Then
Text2.Text = mr.Fields(0)
Else
MsgBox "本学期本班级扣分情况未能查到,请确认输入有关数据或检查学期是否选择正确", vbOKOnly + vbExclamation, "警告"
Exit Sub
End If
txtSQL = "delete from koufen where banji='" & Trim(Combo1) & "' and xueqi1='" & smg & "' and xueqi2='" & smg1 & "'"
Set mr = ExecuteSQL(txtSQL, msgtext)
txtSQL = "execute koufensetup'"
txtSQL = txtSQL & Trim(Combo1) & "','"
txtSQL = txtSQL & Trim(Text1) & "','"
txtSQL = txtSQL & smg & "','"
txtSQL = txtSQL & smg1 & "','"
txtSQL = txtSQL & Trim(Text2.Text) & "'"
Set mr = ExecuteSQL(txtSQL, msgtext)
Unload Me
frmweiji.Show
MsgBox "添加纪录成功!", vbOKOnly + vbExclamation, "添加纪录"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -