📄 form045.frm
字号:
VERSION 5.00
Begin VB.Form Form10
BorderStyle = 3 'Fixed Dialog
Caption = "设备7十六进制原码"
ClientHeight = 6408
ClientLeft = 36
ClientTop = 324
ClientWidth = 8436
Icon = "Form045.frx":0000
LinkTopic = "Form4"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 6408
ScaleWidth = 8436
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Interval = 1000
Left = 1560
Top = 360
End
Begin VB.CommandButton Command2
Caption = "清除"
Height = 372
Left = 4680
TabIndex = 2
ToolTipText = "清除以上文字"
Top = 5880
Width = 972
End
Begin VB.CommandButton Command1
Caption = "关闭"
Height = 372
Left = 2160
TabIndex = 1
ToolTipText = "关闭此窗口"
Top = 5880
Width = 972
End
Begin VB.TextBox Text1
Height = 5772
Left = 0
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
ToolTipText = "十六进制原码"
Top = 0
Width = 8292
End
End
Attribute VB_Name = "Form10"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
On Error Resume Next
Unload Me
End Sub
Private Sub Command2_Click()
On Error Resume Next
Me.Text1.Text = ""
End Sub
Private Sub Timer1_Timer()
On Error Resume Next
If Len(Text1.Text) > 15000 Then
Text1.Text = Right(Text1.Text, 7500)
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -