?? combo.frm
字號(hào):
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 3705
ClientTop = 3735
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
Begin VB.TextBox Text1
Height = 855
Left = 840
TabIndex = 1
Text = "演示字體"
Top = 1680
Width = 2775
End
Begin VB.ComboBox Combo1
Height = 315
Left = 1440
Style = 2 'Dropdown List
TabIndex = 0
Top = 960
Width = 1695
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "選擇字體"
BeginProperty Font
Name = "MS Sans Serif"
Size = 18
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 435
Left = 1440
TabIndex = 2
Top = 240
Width = 1695
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Combo1_Click()
Text1.FontName = Combo1.List(Combo1.ListIndex)
End Sub
Private Sub Form_Load()
With Combo1
.AddItem "宋體"
.AddItem "隸書"
.AddItem "黑體"
.AddItem "楷體"
.ListIndex = 0
End With
Text1.FontSize = 30
Text1.FontName = Combo1.List(0)
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -