?? form1.frm
字號:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 4110
ClientLeft = 60
ClientTop = 345
ClientWidth = 6105
LinkTopic = "Form1"
ScaleHeight = 4110
ScaleWidth = 6105
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text1
Height = 3975
Left = 0
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 2
Top = 0
Width = 4215
End
Begin VB.CommandButton Command2
Caption = "退 出"
Height = 495
Left = 4320
TabIndex = 1
Top = 3120
Width = 1455
End
Begin VB.CommandButton Command1
Caption = "顯示文本"
Height = 495
Left = 4320
TabIndex = 0
Top = 2280
Width = 1455
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Text1.Text = ""
Text1.Text = "使文本框中能放入更長的信息。由于文本加長,文本框不能直接把所有內容全部顯示出來,因此,應該用滾動條將原來在文本框范圍以外的內容順序移到文本中顯于出來。"
End Sub
Private Sub Command2_Click()
End
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -