?? 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 + -