📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BackColor = &H00F8EADF&
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 2655
ClientLeft = 0
ClientTop = 0
ClientWidth = 4815
Icon = "frmAbout.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 2655
ScaleWidth = 4815
ShowInTaskbar = 0 'False
StartUpPosition = 1 'CenterOwner
Begin VB.Image btnExit
Height = 255
Left = 4080
Top = 2160
Width = 495
End
Begin VB.Shape Shape2
BorderColor = &H00C27C42&
Height = 2655
Left = 0
Top = 0
Width = 4815
End
Begin VB.Label lblreg
BackColor = &H00EE9A56&
ForeColor = &H00FFFFFF&
Height = 375
Left = 1200
TabIndex = 8
Top = 1320
Width = 3495
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "Project Started: 25/03/2008"
ForeColor = &H00C27C42&
Height = 255
Left = 1200
TabIndex = 7
Top = 1080
Width = 3255
End
Begin VB.Label lblTitle
Appearance = 0 'Flat
BackColor = &H80000005&
BackStyle = 0 'Transparent
BorderStyle = 1 'Fixed Single
Caption = "YouTubeVideoDownloader"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C27C42&
Height = 375
Left = 1200
TabIndex = 6
Top = 120
Width = 3495
End
Begin VB.Label lbl2
BackStyle = 0 'Transparent
Caption = "By"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C27C42&
Height = 375
Left = 1200
TabIndex = 5
Top = 1680
Width = 375
End
Begin VB.Label lbl3
BackStyle = 0 'Transparent
Caption = "Rajendra Khope"
BeginProperty Font
Name = "MS Sans Serif"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C27C42&
Height = 255
Left = 1680
TabIndex = 4
Top = 1680
Width = 3255
End
Begin VB.Label lbl4
BackStyle = 0 'Transparent
Caption = "Email:bkrajendra@gmail.com"
ForeColor = &H00C27C42&
Height = 255
Left = 1320
TabIndex = 3
Top = 2040
Width = 2775
End
Begin VB.Label lbl5
BackStyle = 0 'Transparent
Caption = "Web: http://www.figmentsol.com/ytvd"
ForeColor = &H00C27C42&
Height = 255
Left = 1320
TabIndex = 2
Top = 2280
Width = 2775
End
Begin VB.Label lblVersion
BackStyle = 0 'Transparent
Caption = "Version"
ForeColor = &H00C27C42&
Height = 225
Left = 1200
TabIndex = 1
Top = 480
Width = 3885
End
Begin VB.Label lblDescription
BackStyle = 0 'Transparent
Caption = "App Description"
ForeColor = &H00C27C42&
Height = 450
Left = 1200
TabIndex = 0
Top = 720
Width = 3405
End
Begin VB.Image i1
Appearance = 0 'Flat
BorderStyle = 1 'Fixed Single
Height = 975
Left = 120
Picture = "frmAbout.frx":1002
Stretch = -1 'True
ToolTipText = "LogoIcon of YouTubeVideoDownloader"
Top = 120
Width = 975
End
Begin VB.Image i2
Appearance = 0 'Flat
BorderStyle = 1 'Fixed Single
Height = 975
Left = 120
Picture = "frmAbout.frx":5788
Stretch = -1 'True
ToolTipText = "Author: Rajendra Khope"
Top = 1200
Width = 975
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub btnExit_Click()
Unload Me
End Sub
Private Sub btnExit_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
btnExit.Picture = frmMain.clr.Picture
End Sub
Private Sub Form_Load()
btnExit.Picture = frmMain.clb.Picture
eml = GetSetting(App.EXEName, "Settings", "Name")
uName = GetSetting(App.EXEName, "Settings", "Email")
lblreg.Caption = "Product Registered to " & uName & " " & eml
Me.Caption = App.Title & " Version " & App.Major & "." & App.Minor & "." & App.Revision & " By Rajendra Khope"
lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
lblTitle.Caption = App.Title
lblDescription.Caption = App.FileDescription
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
btnExit.Picture = frmMain.clb.Picture
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -