📄 frmsmsinfo.frm
字号:
VERSION 5.00
Begin VB.Form frmSmsInfo
BackColor = &H00FFC0C0&
BorderStyle = 1 'Fixed Single
Caption = "短信内容"
ClientHeight = 3705
ClientLeft = 45
ClientTop = 330
ClientWidth = 2670
Icon = "frmSmsInfo.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3705
ScaleWidth = 2670
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command1
BackColor = &H00E0E0E0&
Caption = "关闭(&C)"
Height = 375
Left = 1560
Style = 1 'Graphical
TabIndex = 1
Top = 3240
Width = 975
End
Begin VB.TextBox Text1
BackColor = &H00FFFFFF&
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 2800
Left = 90
MultiLine = -1 'True
TabIndex = 0
Top = 240
Width = 2480
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "安数"
ForeColor = &H00FFC0C0&
Height = 180
Left = 120
TabIndex = 3
Top = 3240
Width = 360
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Height = 220
Left = 2160
TabIndex = 2
Top = 0
Width = 495
End
Begin VB.Image Image1
Appearance = 0 'Flat
Height = 3720
Left = 0
Picture = "frmSmsInfo.frx":030A
Top = 0
Width = 2685
End
End
Attribute VB_Name = "frmSmsInfo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_Load()
Text1.BackColor = RGB(203, 227, 248)
End Sub
Private Sub Label1_Click()
Unload Me
End Sub
Private Sub Text1_Change()
Label2.Caption = "字数:" & Len(Text1.Text)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -