📄 searchfor.frm
字号:
VERSION 5.00
Begin VB.Form SearchFor
BorderStyle = 3 'Fixed Dialog
Caption = "查找"
ClientHeight = 1335
ClientLeft = 2310
ClientTop = 2490
ClientWidth = 3375
ClipControls = 0 'False
Icon = "SearchFor.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
PaletteMode = 1 'UseZOrder
ScaleHeight = 1335
ScaleWidth = 3375
ShowInTaskbar = 0 'False
Begin VB.CommandButton Find
Caption = "开始"
Default = -1 'True
Height = 375
Left = 1200
TabIndex = 2
Top = 840
Width = 975
End
Begin VB.CommandButton Cancel
Caption = "取消"
Height = 375
Left = 2280
TabIndex = 3
Top = 840
Width = 975
End
Begin VB.TextBox Searchstring
Height = 285
Left = 120
TabIndex = 1
Top = 360
Width = 3135
End
Begin VB.Label Searchforlabel
Caption = "输入查找关键字:"
Height = 255
Left = 120
TabIndex = 0
Top = 120
Width = 2055
End
End
Attribute VB_Name = "SearchFor"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Cancel_Click()
Unload Me
End Sub
Private Sub Find_Click()
HelpFunction Me.hWnd, HELP_PARTIALKEY, Searchstring.Text
End Sub
Private Sub Form_Load()
Move (Screen.Width - Width) \ 2, (Screen.Height - Height) \ 2 'centre the form on the screen
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -