?? kcsz.frm
字號(hào):
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "msflxgrd.ocx"
Begin VB.Form 課程設(shè)置
Caption = "基本課程設(shè)置"
ClientHeight = 6510
ClientLeft = 60
ClientTop = 450
ClientWidth = 6540
LinkTopic = "Form14"
ScaleHeight = 6510
ScaleWidth = 6540
StartUpPosition = 3 '窗口缺省
Begin VB.Frame Frame1
Caption = "基本課程設(shè)置"
Height = 6435
Left = 0
TabIndex = 0
Top = 30
Width = 6465
Begin VB.Frame Frame3
Caption = "學(xué)分"
Height = 765
Left = 4800
TabIndex = 12
Top = 5490
Width = 1575
Begin VB.TextBox Text3
Height = 315
Left = 90
TabIndex = 13
Text = "Text3"
Top = 330
Width = 1425
End
End
Begin VB.Frame Frame2
Height = 4725
Left = 4680
TabIndex = 5
Top = 210
Width = 1695
Begin VB.CommandButton Command5
Caption = "取消"
Height = 375
Left = 480
TabIndex = 11
Top = 3840
Width = 855
End
Begin VB.CommandButton Command4
Caption = "確定"
Height = 375
Left = 480
TabIndex = 10
Top = 3030
Width = 855
End
Begin VB.CommandButton Command3
Caption = "修改"
Height = 375
Left = 480
TabIndex = 9
Top = 2235
Width = 855
End
Begin VB.CommandButton Command2
Caption = "刪除"
Height = 375
Left = 480
TabIndex = 8
Top = 1425
Width = 855
End
Begin VB.CommandButton Command1
Caption = "添加"
Height = 375
Left = 480
TabIndex = 7
Top = 630
Width = 855
End
End
Begin VB.TextBox Text2
Height = 345
Left = 1320
TabIndex = 4
Text = "Text2"
Top = 5790
Width = 3285
End
Begin VB.TextBox Text1
Height = 315
Left = 1320
TabIndex = 3
Text = "Text1"
Top = 5160
Width = 3285
End
Begin MSFlexGridLib.MSFlexGrid MSF1
Height = 4695
Left = 90
TabIndex = 1
Top = 270
Width = 4515
_ExtentX = 7964
_ExtentY = 8281
_Version = 393216
End
Begin VB.Label Label3
Caption = "課程代碼"
Height = 315
Left = 270
TabIndex = 6
Top = 5220
Width = 945
End
Begin VB.Label Label1
Caption = "課程名稱"
Height = 225
Left = 270
TabIndex = 2
Top = 5880
Width = 825
End
End
End
Attribute VB_Name = "課程設(shè)置"
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 kcdm 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 kcshowtitle()
MSF1.Clear
Dim i As Integer
With MSF1
.Cols = 4
.TextMatrix(0, 1) = "課程代碼"
.TextMatrix(0, 2) = "課程名稱"
.TextMatrix(0, 3) = "學(xué)分"
.ColWidth(0) = 0
.ColWidth(1) = 400
.ColWidth(2) = 2000
.ColWidth(3) = 400
.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
If Text3.Text = "" Then
sssss = MsgBox("學(xué)分不能為空!", vbOKOnly + vbExclamation, "警告")
Text3.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("已經(jīng)存在該課程代碼!", 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.Fields(2) = Str$(Text3.Text)
mrc.Update
MsgBox "課程添加成功!", vbOKOnly + vbExclamation, "警告"
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Me.commok
kcshowtitle
kcshowdata
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.Fields(2) = Val(Text3.Text)
mrc.Update
MsgBox "院系修改成功!", vbOKOnly + vbExclamation, "警告"
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
Me.commok
kcshowtitle
kcshowdata
End If
End If
Command4.Enabled = False
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 = ""
Text3.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("你還沒(méi)有選擇記錄!", vbOKOnly + vbExclamation, "警告")
Else
If MsgBox("確定要?jiǎng)h除 課程名稱 為 " & 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)
kcdm = Trim(Me.MSF1.TextMatrix(MSF1.Row, 1))
'mrc.Refresh
mrc.Delete
mrc.Close
'刪除學(xué)生選課表中的屬于該課程代碼的記錄
txtsql = "select * from 學(xué)生選課 where 課程號(hào)='" & Trim(kcdm) & "'"
Set mrc = ExecuteSQL(txtsql)
If Not mrc.EOF Then
mrc.Delete
End If
mrc.Close
'刪除學(xué)生成績(jī)表中的屬于該課程的記錄
txtsql = "select * from 學(xué)生成績(jī) where 課程號(hào)='" & Trim(kcdm) & "'"
Set mrc = ExecuteSQL(txtsql)
If Not mrc.EOF Then
mrc.Delete
End If
mrc.Close
'*************************************
MsgBox "課程刪除成功!", vbOKOnly + vbExclamation, "警告"
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""
kcshowtitle
kcshowdata
End If
End If
End Sub
Private Sub Command3_Click()
zt = "cmd3edit"
If Trim(Me.MSF1.TextMatrix(MSF1.Row, 1)) = "" Then
sssss = MsgBox("你還沒(méi)有選擇記錄!", vbOKOnly + vbExclamation, "警告")
Command2.Enabled = True
Command1.Enabled = True
'Text1.Enabled = False
Text2.Enabled = False
Command3.Enabled = True
Else
Text1.Enabled = False
Text2.Enabled = True
Text3.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 = ""
Text3.Text = ""
'txtsql = "select * from 課程"
Me.kcshowtitle
Me.kcshowdata
'kcshowtitle
'kcshowdata
End Sub
Public Sub kcshowdata()
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)
Text3.Text = Str$(mrc.Fields(2))
End If
Me.commok
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Text2.SetFocus
End If
End Sub
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -