📄 frmrelationbox.frm
字号:
VERSION 5.00
Begin VB.Form frmrelationbox
BackColor = &H00FFFFFF&
BorderStyle = 1 'Fixed Single
Caption = "修改各基本信息关系"
ClientHeight = 1305
ClientLeft = 45
ClientTop = 435
ClientWidth = 3255
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1305
ScaleWidth = 3255
StartUpPosition = 3 '窗口缺省
Begin VB.ComboBox cobrelation
Height = 300
Left = 1320
TabIndex = 2
Text = "cobrelation"
Top = 240
Width = 1695
End
Begin VB.CommandButton CmdQuit
Cancel = -1 'True
Caption = "返回"
Height = 420
Left = 1905
TabIndex = 1
Top = 720
Width = 1050
End
Begin VB.CommandButton CmdOK
Caption = "确认"
Default = -1 'True
Height = 420
Left = 240
TabIndex = 0
Top = 720
Width = 1050
End
Begin VB.Label Label1
BackColor = &H00FFFFFF&
Caption = "请选择:"
Height = 360
Left = 240
TabIndex = 3
Top = 255
Width = 945
End
End
Attribute VB_Name = "frmrelationbox"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdOK_Click()
If cobrelation.ListIndex = 0 Then
frmrelationcosp.Show
ElseIf cobrelation.ListIndex = 1 Then
frmrelation.Show
Else
frmrelationlesson.Show
End If
Unload Me
End Sub
Private Sub cmdQuit_Click()
Unload Me
End Sub
Private Sub Form_Load()
Me.Move (Screen.Width - Me.Width) / 2, (Screen.Height - Me.Height) / 2 - 600
cobrelation.AddItem "学院与专业"
cobrelation.AddItem "专业与班级"
cobrelation.AddItem "专业与课程"
cobrelation.ListIndex = 0
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -