?? addcourse.frm
字號:
VERSION 5.00
Begin VB.Form addcourse
BorderStyle = 4 'Fixed ToolWindow
Caption = "添加課程"
ClientHeight = 3555
ClientLeft = 5520
ClientTop = 3735
ClientWidth = 4215
LinkTopic = "Form2"
MaxButton = 0 'False
MDIChild = -1 'True
MinButton = 0 'False
ScaleHeight = 3555
ScaleWidth = 4215
ShowInTaskbar = 0 'False
Begin VB.CommandButton Command2
Caption = "取消"
Height = 345
Left = 2220
TabIndex = 14
Top = 2670
Width = 1245
End
Begin VB.CommandButton Command1
Caption = "添加"
Height = 315
Left = 510
TabIndex = 13
Top = 2670
Width = 1245
End
Begin VB.Frame Frame1
Caption = "添加課程"
Height = 3345
Left = 0
TabIndex = 0
Top = 30
Width = 4035
Begin VB.TextBox Text5
DataField = "課程學分"
DataSource = "Adodc1"
Height = 285
Left = 1020
TabIndex = 12
Top = 2190
Width = 1365
End
Begin VB.TextBox Text4
DataField = "周學時"
DataSource = "Adodc1"
Height = 285
Left = 990
TabIndex = 11
Top = 1770
Width = 1095
End
Begin VB.CheckBox Check1
Alignment = 1 'Right Justify
Caption = "必修"
DataField = "必修"
DataSource = "Adodc1"
Height = 255
Left = 120
TabIndex = 10
Top = 1080
Width = 1050
End
Begin VB.TextBox Text3
DataField = "課程總學時"
DataSource = "Adodc1"
Height = 285
Left = 990
TabIndex = 9
Top = 1440
Width = 945
End
Begin VB.TextBox Text2
DataField = "課程名稱"
DataSource = "Adodc1"
Height = 270
Left = 990
TabIndex = 8
Top = 720
Width = 1815
End
Begin VB.TextBox Text1
DataField = "課程號"
DataSource = "Adodc1"
Height = 270
Left = 990
TabIndex = 7
Top = 390
Width = 1785
End
Begin VB.Label Label6
AutoSize = -1 'True
Caption = "課程學分"
Height = 180
Left = 210
TabIndex = 6
Top = 2190
Width = 720
End
Begin VB.Label Label5
AutoSize = -1 'True
Caption = "周學時"
Height = 180
Left = 390
TabIndex = 5
Top = 1860
Width = 540
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "課程總學時"
Height = 180
Left = 30
TabIndex = 4
Top = 1494
Width = 900
End
Begin VB.Label Label3
AutoSize = -1 'True
Height = 180
Left = 510
TabIndex = 3
Top = 1140
Width = 90
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "課程名稱"
Height = 180
Left = 180
TabIndex = 2
Top = 795
Width = 720
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "課程號"
Height = 180
Left = 390
TabIndex = 1
Top = 450
Width = 540
End
End
End
Attribute VB_Name = "addcourse"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
kcxinxi.Adodc1.Recordset.MoveLast
kcxinxi.Adodc1.Recordset.AddNew
kcxinxi.Adodc1.Recordset("課程號") = Text1.Text
kcxinxi.Adodc1.Recordset("課程名稱") = Text2.Text
kcxinxi.Adodc1.Recordset("必修") = Check1.Value
kcxinxi.Adodc1.Recordset("課程總學時") = Val(Text3.Text)
kcxinxi.Adodc1.Recordset("周學時") = Val(Text4.Text)
kcxinxi.Adodc1.Recordset("課程學分") = Val(Text5.Text)
kcxinxi.Adodc1.Recordset.Update
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -