?? form3.frm
字號:
VERSION 5.00
Begin VB.Form Form3
Caption = "Form3"
ClientHeight = 3090
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form3"
ScaleHeight = 3090
ScaleWidth = 4680
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton Command3
Caption = "退出系統"
Height = 495
Left = 3120
TabIndex = 2
Top = 2400
Width = 975
End
Begin VB.CommandButton Command2
Caption = "查詢電話"
Height = 495
Left = 1680
TabIndex = 1
Top = 2400
Width = 975
End
Begin VB.CommandButton Command1
Caption = "進入系統"
Height = 495
Left = 360
TabIndex = 0
Top = 2400
Width = 975
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "2006年12月7日"
Height = 255
Left = 1560
TabIndex = 5
Top = 1800
Width = 1335
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "設計者:宮彥磊"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 1320
TabIndex = 4
Top = 1200
Width = 1935
End
Begin VB.Label Label1
BeginProperty Font
Name = "隸書"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 360
TabIndex = 3
Top = 240
Width = 3975
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Form1.Show
End Sub
Private Sub Command2_Click()
Form2.Show
End Sub
Private Sub Command3_Click()
End
End Sub
Private Sub Form_Paint()
Caption = "班級同學管理系統"
Dim i As Integer
Label1.Caption = "班級信息管理系統"
Label1.BackStyle = 0
ScaleMode = 3
For i = 0 To 255
Line (0, i)-(Width, i), RGB(i, i, 255)
Next i
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -