📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "About Sunnydale Library Management System"
ClientHeight = 5175
ClientLeft = 2340
ClientTop = 1935
ClientWidth = 6930
ClipControls = 0 'False
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3571.877
ScaleMode = 0 'User
ScaleWidth = 6507.628
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton cmdSysInfo
Caption = "&Visit the authors website"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 2040
TabIndex = 9
Top = 4680
Width = 2775
End
Begin VB.CommandButton cmdExit
Caption = "E&xit Program"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 4920
TabIndex = 2
Top = 4680
Width = 1815
End
Begin VB.CommandButton cmdOK
Caption = "Go &Back"
Default = -1 'True
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 120
TabIndex = 1
Top = 4680
Width = 1815
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1095
Left = 240
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 2 'Vertical
TabIndex = 0
Text = "frmAbout.frx":0000
Top = 2280
Width = 6615
End
Begin VB.Image Image1
Height = 615
Left = 360
Top = 240
Width = 735
End
Begin VB.Label Label4
Caption = "http://www.elvista.cjb.net/"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 255
Left = 1080
MouseIcon = "frmAbout.frx":007E
MousePointer = 1 'Arrow
TabIndex = 8
Top = 480
Width = 2175
End
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "All right reserved"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 240
TabIndex = 7
Top = 1200
Width = 2895
End
Begin VB.Label Label1
Caption = $"frmAbout.frx":0388
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1035
Left = 120
TabIndex = 6
Top = 3480
Width = 6720
WordWrap = -1 'True
End
Begin VB.Label Label3
Caption = $"frmAbout.frx":0523
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 240
TabIndex = 5
Top = 1560
Width = 6615
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "Copyright (c) 2005 Hussain Mohd. Elius"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 240
TabIndex = 4
Top = 960
Width = 2895
End
Begin VB.Label LblTitle
BackStyle = 0 'Transparent
Caption = "Sunnydale Library Management System"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 375
Index = 0
Left = 1080
TabIndex = 3
Top = 120
Width = 4935
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'--------------------
'About Form
'for Showing Credits
'--------------------
Private Sub cmdExit_Click()
Unload Me
Unload frmMain
End Sub
Private Sub cmdOK_Click()
Unload Me
End Sub
Private Sub cmdSysInfo_Click()
ShellEx Label4.Caption
End Sub
Private Sub Form_Load()
Me.Icon = frmMain.ImgList32.ListImages(5).Picture
Image1.Picture = frmMain.Icon
End Sub
Private Sub Label4_Click()
ShellEx Label4.Caption
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -