📄 find.frm
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -