?? frmprocessterm.frm
字號(hào):
VERSION 5.00
Begin VB.Form frmProcessTerm
BackColor = &H00800000&
BorderStyle = 1 'Fixed Single
Caption = "Options"
ClientHeight = 1935
ClientLeft = 45
ClientTop = 330
ClientWidth = 4680
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Moveable = 0 'False
ScaleHeight = 1935
ScaleWidth = 4680
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton cmdDone
BackColor = &H00FFFFFF&
Caption = "Done"
Height = 255
Left = 3480
Style = 1 'Graphical
TabIndex = 2
Top = 1560
Width = 975
End
Begin VB.TextBox Text2
Height = 285
Left = 720
TabIndex = 1
Top = 1080
Width = 3735
End
Begin VB.TextBox Text1
Height = 285
Left = 720
TabIndex = 0
Top = 720
Width = 3735
End
Begin VB.Label Label3
BackColor = &H00800000&
BackStyle = 0 'Transparent
Caption = "Any running process containing entered text will be terminated when the function key is pressed."
ForeColor = &H00FFFFFF&
Height = 375
Left = 720
TabIndex = 5
Top = 120
Width = 4335
End
Begin VB.Label Label2
BackColor = &H00800000&
BackStyle = 0 'Transparent
Caption = "F12"
ForeColor = &H00FFFFFF&
Height = 255
Left = 240
TabIndex = 4
Top = 1080
Width = 375
End
Begin VB.Label Label1
BackColor = &H00800000&
BackStyle = 0 'Transparent
Caption = "F11"
ForeColor = &H00FFFFFF&
Height = 255
Left = 240
TabIndex = 3
Top = 720
Width = 375
End
End
Attribute VB_Name = "frmProcessTerm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Check2_Click()
If Check2.Value = 1 Then
SaveSetting "dFreeze", "Options", "Top", "Yes"
A = frmMain.hwnd
If A <> 0 Then SetWinOnTop = SetWindowPos(A, HWND_TOPMOST, 0, 0, 0, 0, FLAGS)
Else
SaveSetting "dFreeze", "Options", "Top", ""
A = frmMain.hwnd
If A <> 0 Then SetWinOnTop = SetWindowPos(A, HWND_NOTOPMOST, 0, 0, 0, 0, FLAGS)
End If
End Sub
Private Sub cmdDone_Click()
Unload Me
End Sub
Private Sub Form_Load()
Text1 = GetSetting("dFreeze", "Terminate", "F11", "")
Text2 = GetSetting("dFreeze", "Terminate", "F12", "")
End Sub
Private Sub Text1_Change()
On Error GoTo errorhandler
GoSub begin
errorhandler:
Exit Sub
begin:
SaveSetting "dFreeze", "Terminate", "F11", Text1.Text
End Sub
Private Sub Text2_Change()
On Error GoTo errorhandler
GoSub begin
errorhandler:
Exit Sub
begin:
SaveSetting "dFreeze", "Terminate", "F12", Text2.Text
End Sub
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -