?? findnoform.frm
字號:
VERSION 5.00
Begin VB.Form Form3
Caption = "成績管理系統 V2.1"
ClientHeight = 2010
ClientLeft = 60
ClientTop = 345
ClientWidth = 4260
LinkTopic = "Form3"
ScaleHeight = 2010
ScaleWidth = 4260
Begin VB.CommandButton Command2
Caption = "取消"
Height = 375
Left = 2760
TabIndex = 3
Top = 960
Width = 855
End
Begin VB.CommandButton Command1
Caption = "確定"
Height = 375
Left = 960
TabIndex = 2
Top = 960
Width = 855
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "System"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2400
TabIndex = 1
Text = "888888"
Top = 360
Width = 1455
End
Begin VB.Label Label1
Caption = "請輸入要查詢的學號:"
BeginProperty Font
Name = "System"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 0
Top = 360
Width = 2415
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()
gsnamestr = Text1.Text
Unload Me
End Sub
Private Sub Command2_Click()
gsnamestr = ""
Unload Me
End Sub
Private Sub Form_Load()
CenterForm Me
Me.Height = 2485
Me.Width = 4235
End Sub
Private Sub Form_Resize()
Me.Height = 2485
Me.Width = 4035
End Sub
Private Sub Text1_GotFocus()
Text1.SelStart = 0
Text1.SelLength = 10
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -