📄 frmhelp.frm
字号:
VERSION 5.00
Begin VB.Form FrmHelp
BorderStyle = 3 'Fixed Dialog
Caption = "宛枫书社图书管理系统 系统帮助"
ClientHeight = 4140
ClientLeft = 45
ClientTop = 330
ClientWidth = 8745
Icon = "FrmHelp.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 4140
ScaleWidth = 8745
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton CmdAbout
Caption = "关于(&A)"
Height = 375
Left = 7440
TabIndex = 5
Top = 600
Width = 1095
End
Begin VB.CommandButton CmdOK
Cancel = -1 'True
Caption = "确定(&D)"
Default = -1 'True
Height = 375
Left = 7440
TabIndex = 4
Top = 120
Width = 1095
End
Begin VB.PictureBox Picture1
Height = 1935
Left = 120
Picture = "FrmHelp.frx":0E42
ScaleHeight = 1875
ScaleWidth = 1755
TabIndex = 0
Top = 120
Width = 1815
End
Begin VB.Label Label3
Height = 2535
Left = 2160
TabIndex = 3
Top = 1320
Width = 6255
WordWrap = -1 'True
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "系统简介:"
Height = 180
Left = 2160
TabIndex = 2
Top = 960
Width = 900
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "书店管理系统"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 2160
TabIndex = 1
Top = 240
Width = 1440
End
End
Attribute VB_Name = "FrmHelp"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub CmdAbout_Click()
Unload Me
Load frmAbout
frmAbout.Show vbModal
End Sub
Private Sub CmdOK_Click()
Unload Me
End Sub
Private Sub Form_Load()
Dim strInfo As String
strInfo = "书店管理系统"
Label3.Caption = strInfo
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -