📄 frmedit.frm
字号:
VERSION 5.00
Begin VB.Form frmEdit
BorderStyle = 1 'Fixed Single
ClientHeight = 9450
ClientLeft = 15
ClientTop = 15
ClientWidth = 12060
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 9450
ScaleWidth = 12060
StartUpPosition = 3 'Windows Default
WindowState = 2 'Maximized
Begin VB.Frame fmeEdit
Caption = "What would you like to do?"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 8535
Left = 480
TabIndex = 0
Top = 480
Width = 11415
Begin VB.CommandButton Command1
Caption = "quit"
Height = 255
Left = 6720
TabIndex = 7
Top = 1560
Width = 735
End
Begin VB.OptionButton optRun
Caption = "Run Program"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 840
TabIndex = 6
Top = 7560
Width = 3375
End
Begin VB.OptionButton optSettings
Caption = "Change settings (requires password)"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 855
Left = 840
TabIndex = 5
Top = 6120
Width = 4935
End
Begin VB.OptionButton optClear
Caption = "Clear a page"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 855
Left = 840
TabIndex = 4
Top = 4680
Width = 3615
End
Begin VB.OptionButton optDelete
Caption = "Delete a page (requires password)"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 840
TabIndex = 3
Top = 3480
Width = 4215
End
Begin VB.OptionButton optNew
Caption = "Create a new page"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 840
TabIndex = 2
Top = 2280
Width = 2175
End
Begin VB.OptionButton optEdit
Caption = "Edit a page"
BeginProperty Font
Name = "MS Sans Serif"
Size = 9.75
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 840
TabIndex = 1
Top = 1080
Width = 1575
End
End
End
Attribute VB_Name = "frmEdit"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = 27 Then Unload Me
End Sub
Private Sub optEdit_Click()
frmAddPage.Show
End Sub
Private Sub optRun_Click()
frmRun.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -