📄 yxsz.frm
字号:
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "msflxgrd.ocx"
Begin VB.Form 院系设置
Caption = "院系、专业管理-院系设置"
ClientHeight = 5295
ClientLeft = 60
ClientTop = 345
ClientWidth = 5085
LinkTopic = "Form21"
ScaleHeight = 5295
ScaleWidth = 5085
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame3
Caption = "院系管理"
Height = 3585
Left = 3360
TabIndex = 7
Top = 600
Width = 1665
Begin VB.CommandButton Command5
Caption = "取消"
Height = 375
Left = 390
TabIndex = 13
Top = 2880
Width = 855
End
Begin VB.CommandButton Command4
Caption = "确定"
Height = 375
Left = 390
TabIndex = 12
Top = 2250
Width = 855
End
Begin VB.CommandButton Command3
Caption = "修改"
Height = 375
Left = 390
TabIndex = 11
Top = 1604
Width = 855
End
Begin VB.CommandButton Command2
Caption = "删除"
Height = 375
Left = 390
TabIndex = 10
Top = 967
Width = 855
End
Begin VB.CommandButton Command1
Caption = "添加"
Height = 375
Left = 390
TabIndex = 9
Top = 330
Width = 855
End
End
Begin VB.Frame Frame2
Height = 1005
Left = 30
TabIndex = 2
Top = 4260
Width = 5025
Begin VB.TextBox Text2
Height = 285
Left = 1170
TabIndex = 6
Text = "Text2"
Top = 630
Width = 2145
End
Begin VB.TextBox Text1
Height = 285
Left = 1170
TabIndex = 5
Text = "Text1"
Top = 210
Width = 2145
End
Begin VB.Label Label3
Caption = "院系名称"
Height = 225
Left = 150
TabIndex = 4
Top = 660
Width = 855
End
Begin VB.Label Label2
Caption = "院系代码"
Height = 255
Left = 150
TabIndex = 3
Top = 240
Width = 975
End
End
Begin VB.Frame Frame1
Caption = "院系浏览"
Height = 3645
Left = 30
TabIndex = 1
Top = 570
Width = 3285
Begin MSFlexGridLib.MSFlexGrid MSF1
Height = 3375
Left = 60
TabIndex = 8
Top = 210
Width = 3225
_ExtentX = 5689
_ExtentY = 5953
_Version = 393216
End
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "院 系 设 置"
BeginProperty Font
Name = "黑体"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 465
Left = 90
TabIndex = 0
Top = 30
Width = 4935
End
End
Attribute VB_Name = "院系设置"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim zt As String
Dim mrc As ADODB.Recordset
Dim yxdm As String
Public Sub commok()
Command1.Enabled = True
Command2.Enabled = True
Command3.Enabled = True
Command4.Enabled = True
Command5.Enabled = True
End Sub
Public Sub commnotok()
Command1.Enabled = False
Command2.Enabled = False
Command3.Enabled = False
Command4.Enabled = False
Command5.Enabled = False
End Sub
Public Sub yxshowtitle()
MSF1.Clear
Dim i As Integer
With MSF1
.Cols = 3
.TextMatrix(0, 1) = "院系代码"
.TextMatrix(0, 2) = "院系名称"
.ColWidth(0) = 0
.ColWidth(1) = 400
.ColWidth(2) = 2000
.FixedRows = 1
.FillStyle = flexFillSingle
.Col = 0
.Row = 0
.RowSel = 1
.ColSel = .Cols - 1
.CellAlignment = 4
.Row = 1
End With
End Sub
Private Sub Command4_Click()
'&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
'
' 院系添加模块代码
'
'&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
If zt = "cmd1add" Then
If Text1.Text = "" Then
sssss = MsgBox("院系代码不能为空!", vbOKOnly + vbExclamation, "警告")
Text1.SetFocus
Exit Sub
End If
If Text2.Text = "" Then
sssss = MsgBox("院系名称不能为空!", vbOKOnly + vbExclamation, "警告")
Text2.SetFocus
Exit Sub
End If
txtsql = "select * from 院系 where 院系代码='" & Trim(Text1.Text) & "'"
Set mrc = ExecuteSQL(txtsql)
' mrc.Refresh
If mrc.EOF = False Then
sssss = MsgBox("已经存在该院系代码!", vbOKOnly + vbExclamation, "警告")
Text1.SetFocus
Text1.SelStart = 0
Text1.SelLength = Len(Text1.Text)
Exit Sub
Else
mrc.AddNew
mrc.Fields(0) = Text1.Text
mrc.Fields(1) = Text2.Text
mrc.Update
MsgBox "院系添加成功!", vbOKOnly + vbExclamation, "警告"
Text1.Text = ""
Text2.Text = ""
Me.commok
yxshowtitle
yxshowdata
End If
End If
'***************************************************
'
' 院系修改模块代码
'
'***********************************************
If zt = "cmd3edit" Then
txtsql = "select * from 院系 where 院系代码='" & Trim(Text1.Text) & "'"
Set mrc = ExecuteSQL(txtsql)
If mrc.Fields(1) = Trim(Text2.Text) Then
MsgBox "必须输入改变值!", vbOKOnly + vbExclamation, "警告"
Text2.SetFocus
Exit Sub
Else
mrc.Fields(0) = Text1.Text
mrc.Fields(1) = Text2.Text
mrc.Update
MsgBox "院系修改成功!", vbOKOnly + vbExclamation, "警告"
Text1.Text = ""
Text2.Text = ""
Command4.Enabled = False
Me.commok
yxshowtitle
yxshowdata
End If
End If
zt = ""
End Sub
Private Sub Command5_Click()
Unload Me
End Sub
Private Sub Command1_Click()
zt = "cmd1add"
Text1.Enabled = True
Text1.SetFocus
Text1.Text = ""
Text2.Text = ""
Command2.Enabled = False
Command3.Enabled = False
Command4.Enabled = True
'李中新
End Sub
Private Sub Command2_Click()
'zt = "cmd2del"
If Trim(Me.MSF1.TextMatrix(MSF1.Row, 1)) = "" Then
sssss = MsgBox("你还没有选择记录!", vbOKOnly + vbExclamation, "警告")
Else
If MsgBox("确定要删除 院系名称 为 " & Trim(Me.MSF1.TextMatrix(MSF1.Row, 2)) & " 的记录吗?", vbOKCancel + vbExclamation, "警告") = vbOK Then
'删除院系表中的院系
txtsql = "select * from 院系 where 院系代码='" & Trim(Me.MSF1.TextMatrix(MSF1.Row, 1)) & "'"
Set mrc = ExecuteSQL(txtsql)
yxdm = Trim(Me.MSF1.TextMatrix(MSF1.Row, 1))
'mrc.Refresh
mrc.Delete
mrc.Close
'删除学生基本信息表中的该院系代码的院系
txtsql = "select * from 学生基本信息 where 院系代码='" & Trim(yxdm) & "'"
Set mrc = ExecuteSQL(txtsql)
If Not mrc.EOF Then
mrc.Delete
End If
mrc.Close
'删除班级表中的属于该院系的记录
txtsql = "select * from 班级 where 院系代码='" & Trim(yxdm) & "'"
Set mrc = ExecuteSQL(txtsql)
If Not mrc.EOF Then
mrc.Delete
End If
mrc.Close
'删除专业表中属于该院系的记录
txtsql = "select * from 专业 where 院系代码='" & Trim(yxdm) & "'"
Set mrc = ExecuteSQL(txtsql)
If Not mrc.EOF Then
mrc.Delete
End If
mrc.Close
'*************************************
MsgBox "院系删除成功!", vbOKOnly + vbExclamation, "警告"
Text1.Text = ""
Text2.Text = ""
yxshowtitle
yxshowdata
End If
End If
End Sub
Private Sub Command3_Click()
zt = "cmd3edit"
If Trim(Me.MSF1.TextMatrix(MSF1.Row, 1)) = "" Then
sssss = MsgBox("你还没有选择记录!", vbOKOnly + vbExclamation, "警告")
Command2.Enabled = True
Command1.Enabled = True
'Text1.Enabled = False
Text2.Enabled = False
Command3.Enabled = True
Else
Text1.Enabled = False
Text2.Enabled = True
Text2.SetFocus
Command2.Enabled = False
Command1.Enabled = False
Command3.Enabled = False
End If
End Sub
Private Sub Form_Load()
Text1.Enabled = False
Me.commok
Command4.Enabled = False
'adodc1.ConnectionString = connstring
Text1.Text = ""
Text2.Text = ""
'txtsql = "select * from 院系"
Me.yxshowtitle
Me.yxshowdata
yxshowtitle
yxshowdata
End Sub
Public Sub yxshowdata()
Dim j As Integer
Dim i As Integer
'Dim mrc As adodb.Recordset
txtsql = "select * from 院系"
Set mrc = ExecuteSQL(txtsql)
'mrc.Refresh
If mrc.EOF = False Then
mrc.MoveFirst
With MSF1
.Rows = 15
.Row = 2
Do While Not mrc.EOF
.Rows = .Rows + 1
For i = 1 To mrc.Fields.Count
.TextMatrix(.Row - 1, i) = mrc.Fields(i - 1)
Next i
.Row = .Row + 1
mrc.MoveNext
Loop
End With
End If
End Sub
Private Sub MSF1_Click()
'Dim mrc As adodb.Recordset
If Trim(Me.MSF1.TextMatrix(MSF1.Row, 1)) = "" Then
Text1.Text = ""
Text2.Text = ""
Else
txtsql = "select * from 院系 where 院系代码='" & Trim(Me.MSF1.TextMatrix(MSF1.Row, 1)) & "'"
Set mrc = ExecuteSQL(txtsql)
'mrc.Refresh
Text1.Text = mrc.Fields(0)
Text2.Text = mrc.Fields(1)
End If
Me.commok
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Text2.SetFocus
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -