📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "Aout Digital Cook Book"
ClientHeight = 4050
ClientLeft = 45
ClientTop = 435
ClientWidth = 6495
Icon = "frmAbout.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Moveable = 0 'False
ScaleHeight = 4050
ScaleWidth = 6495
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Begin VB.Timer Timer1
Enabled = 0 'False
Interval = 1000
Left = 0
Top = 3600
End
Begin VB.CommandButton cmdOk
Caption = "OK"
Height = 495
Left = 5040
TabIndex = 4
Top = 3480
Width = 1215
End
Begin VB.Frame Frame1
BeginProperty Font
Name = "Modern"
Size = 8.25
Charset = 255
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 3255
Left = 120
TabIndex = 0
Top = 120
Width = 6255
Begin VB.Label lblDate
AutoSize = -1 'True
Caption = "Copyright (c) 2003"
Height = 195
Left = 2415
TabIndex = 5
Top = 2880
Width = 1290
End
Begin VB.Label lblCompany
Caption = "J-SOFT"
BeginProperty Font
Name = "Arial"
Size = 48
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 1095
Left = 1320
TabIndex = 3
Top = 480
Width = 3960
End
Begin VB.Label LblName
AutoSize = -1 'True
Caption = "Digital Cook Book"
BeginProperty Font
Name = "MS Sans Serif"
Size = 24
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 555
Left = 1155
TabIndex = 2
Top = 1680
Width = 3825
End
Begin VB.Label lblVersion
AutoSize = -1 'True
Caption = "Version 0.0.0"
BeginProperty Font
Name = "MS Sans Serif"
Size = 18
Charset = 0
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Height = 435
Left = 1920
TabIndex = 1
Top = 2280
Width = 2295
End
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' Programed By James Letner (J-SOFT)
Private Sub cmdOk_Click()
' closes the about box
Unload Me
End Sub
Private Sub Form_Load()
'gives the version lable the current version
lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
'Starts the timer for the status bar
Timer1.Enabled = True
End Sub
Private Sub Form_Unload(Cancel As Integer)
'Keeps the user updated on the programs status
fMainForm.sbStatusBar.Panels(1).Text = "Status: Closing Page..."
fMainForm.sbStatusBar.Refresh
fMainForm.Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
'Keeps the user updated on the programs status
fMainForm.sbStatusBar.Panels(1).Text = "Status: Running..."
fMainForm.sbStatusBar.Refresh
Timer1.Enabled = False
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -