📄 frmaddentry.frm
字号:
VERSION 5.00
Begin VB.Form frmAddEntry
BorderStyle = 4 'Fixed ToolWindow
Caption = "Add entry"
ClientHeight = 1905
ClientLeft = 45
ClientTop = 285
ClientWidth = 2025
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1905
ScaleWidth = 2025
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Begin VB.CommandButton cmdOK
Caption = "OK"
Height = 255
Left = 120
TabIndex = 5
Top = 1560
Width = 855
End
Begin VB.CommandButton cmdCancel
Caption = "Cancel"
Height = 255
Left = 1080
TabIndex = 4
Top = 1560
Width = 855
End
Begin VB.OptionButton optType
Caption = "Comment"
Height = 375
Index = 0
Left = 240
TabIndex = 3
Top = 360
Width = 3015
End
Begin VB.OptionButton optType
Caption = "Load list"
Height = 375
Index = 2
Left = 240
TabIndex = 2
Top = 1080
Width = 3015
End
Begin VB.OptionButton optType
Caption = "Rule"
Height = 375
Index = 1
Left = 240
TabIndex = 1
Top = 720
Width = 3015
End
Begin VB.Label Label1
Caption = "Type of entry:"
Height = 255
Left = 120
TabIndex = 0
Top = 120
Width = 2175
End
End
Attribute VB_Name = "frmAddEntry"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private iSelected As Long
Private Sub cmdCancel_Click()
Unload Me
End Sub
Private Sub cmdOK_Click()
frmEditRules.AddEntry iSelected
Unload Me
End Sub
Private Sub optType_Click(Index As Integer)
iSelected = Index
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -