find.frm
来自「一个修改二进制文件的小程序,不过在打开大于1M的文件时耗时较长」· FRM 代码 · 共 49 行
FRM
49 行
VERSION 5.00
Begin VB.Form Form4
BorderStyle = 1 'Fixed Single
Caption = "查找"
ClientHeight = 3375
ClientLeft = 2505
ClientTop = 1485
ClientWidth = 1245
LinkTopic = "Form4"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3375
ScaleWidth = 1245
ShowInTaskbar = 0 'False
Begin VB.ListBox List1
Height = 3120
Left = 0
TabIndex = 0
Top = 240
Width = 1215
End
Begin VB.Label Label1
Caption = "位置:"
Height = 255
Left = 0
TabIndex = 1
Top = 0
Width = 975
End
End
Attribute VB_Name = "Form4"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Me.Icon = Form1.Icon
End Sub
Private Sub List1_DblClick()
With Form1.rdata
.SelStart = 3 * List1.List(List1.ListIndex) - 3
.SelLength = 2
End With
Form1.SetFocus
End Sub
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?