?? form0402.frm
字號:
VERSION 5.00
Begin VB.Form Form1
BackColor = &H00C0FFC0&
Caption = "學生管理"
ClientHeight = 3090
ClientLeft = 1260
ClientTop = 1245
ClientWidth = 4680
ForeColor = &H0000FFFF&
LinkTopic = "Form1"
MinButton = 0 'False
ScaleHeight = 3090
ScaleWidth = 4680
Begin VB.CommandButton Command1
Caption = "Command1"
Height = 495
Left = 1680
TabIndex = 0
Top = 2280
Width = 1215
End
Begin VB.Label Label1
Caption = "Label1"
Height = 735
Left = 960
TabIndex = 1
Top = 600
Width = 2655
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
'單擊按鈕
End
End Sub
Private Sub Form_Click()
'單擊窗體
Move 1000, 1000
Print "謝謝你的進入"
End Sub
Private Sub Form_Load()
'裝載窗體
AutoRedraw = True
Command1.Caption = "退出"
Label1.Caption = "歡迎使用學生信息管理系統"
End Sub
Private Sub Form_Resize()
'調整窗體大小
Label1.Move 100 '將標簽放置在窗體100的位置
End Sub
Private Sub Form_Unload(Cancel As Integer)
'卸載窗體
Dim Answer As Integer
Label1.Caption = "再見!"
Answer = MsgBox("正在卸載窗體,是否確定?", vbOKCancel, "卸載窗體")
If Answer = 1 Then
Cancel = 0
Else
Cancel = 1
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -