?? introfrm.frm
字號:
VERSION 5.00
Begin VB.Form Introfrm
Caption = "歡迎使用選課系統(tǒng)"
ClientHeight = 3195
ClientLeft = 660
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3195
ScaleWidth = 4680
Begin VB.CommandButton aboutcmd
Caption = "關(guān)于"
Height = 615
Left = 2640
TabIndex = 1
Top = 2280
Width = 1575
End
Begin VB.CommandButton logcmd
Caption = "登陸"
Height = 615
Left = 480
TabIndex = 0
Top = 2280
Width = 1455
End
Begin VB.Label Label1
Caption = "選課系統(tǒng)"
BeginProperty Font
Name = "隸書"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1320
TabIndex = 2
Top = 840
Width = 1935
End
End
Attribute VB_Name = "Introfrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub aboutcmd_Click()
' 顯示關(guān)于對話框
Frmabout.Show vbModal, Me
End Sub
Private Sub Form_Load()
' 調(diào)用模塊函數(shù),打開數(shù)據(jù)庫
Call openDB
End Sub
Private Sub logcmd_Click()
' 顯示登陸對話框
Frmlogin.Show vbModal, Me
' 登陸成功,則退出 introfrm窗體
Unload Introfrm
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -