📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "关于 SuperMp3"
ClientHeight = 2790
ClientLeft = 2340
ClientTop = 1935
ClientWidth = 6990
ControlBox = 0 'False
Icon = "frmAbout.frx":0000
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1925.708
ScaleMode = 0 'User
ScaleWidth = 6563.971
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.PictureBox Picture2
Height = 1335
Left = 5160
Picture = "frmAbout.frx":0442
ScaleHeight = 1275
ScaleWidth = 1515
TabIndex = 13
ToolTipText = "能和我联系一下吗?"
Top = 120
Width = 1575
End
Begin VB.PictureBox Picture1
Height = 2295
Left = 240
Picture = "frmAbout.frx":2A1C
ScaleHeight = 2235
ScaleWidth = 1515
TabIndex = 11
Top = 240
Width = 1575
End
Begin VB.CommandButton cmdOK
Cancel = -1 'True
Caption = "确定"
Default = -1 'True
Height = 345
Left = 5880
TabIndex = 0
Top = 1800
Width = 1020
End
Begin VB.Label Label8
AutoSize = -1 'True
Caption = "TM"
BeginProperty Font
Name = "黑体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 4440
TabIndex = 12
Top = 120
Width = 285
End
Begin VB.Label Label7
AutoSize = -1 'True
Caption = "准擅用为其它用途。"
Height = 180
Left = 2520
TabIndex = 10
Top = 2235
Width = 1620
End
Begin VB.Label Label6
AutoSize = -1 'True
Caption = "所有。任何人未经允许不"
Height = 180
Left = 3797
TabIndex = 9
Top = 2010
Width = 1980
End
Begin VB.Label Label5
AutoSize = -1 'True
Caption = "赵洪涛"
ForeColor = &H80000018&
Height = 180
Left = 3092
TabIndex = 8
ToolTipText = "waenzht@sina.com"
Top = 2010
Width = 540
End
Begin VB.Label Label4
AutoSize = -1 'True
Caption = "公司"
ForeColor = &H00FF0000&
Height = 180
Left = 2552
TabIndex = 7
ToolTipText = "waenzht@sina.com"
Top = 2010
Width = 360
End
Begin VB.Label Label3
AutoSize = -1 'True
Caption = "哈尔滨华诺网络系统集成"
ForeColor = &H00FF0000&
Height = 180
Left = 3795
TabIndex = 6
ToolTipText = "waenzht@sina.com"
Top = 1800
Width = 1980
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "版权所有 Copy Right 2001年03月"
Height = 180
Left = 2160
TabIndex = 5
Top = 1200
Width = 2700
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "本软件版权属"
Height = 180
Left = 2640
TabIndex = 4
Top = 1800
Width = 1080
End
Begin VB.Line Line1
BorderColor = &H00808080&
BorderStyle = 6 'Inside Solid
Index = 1
X1 = 2000.18
X2 = 6284.134
Y1 = 1107.8
Y2 = 1107.8
End
Begin VB.Label lblTitle
AutoSize = -1 'True
Caption = "SuperMp3 "
BeginProperty Font
Name = "黑体"
Size = 26.25
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00000000&
Height = 525
Left = 2130
TabIndex = 2
Top = 240
Width = 2580
End
Begin VB.Line Line1
BorderColor = &H00FFFFFF&
BorderWidth = 2
Index = 0
X1 = 2014.266
X2 = 6284.134
Y1 = 1118.153
Y2 = 1118.153
End
Begin VB.Label lblVersion
Caption = "版本:2.10 (For Win9X/NT)"
Height = 225
Left = 2160
TabIndex = 3
Top = 900
Width = 2445
End
Begin VB.Label lblDisclaimer
Caption = "警 告:"
ForeColor = &H00000000&
Height = 225
Left = 2055
TabIndex = 1
Top = 1785
Width = 630
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdOK_Click()
Unload Me
End Sub
Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label_Show False
End Sub
Private Sub Label3_Click()
Call SendMail
End Sub
Private Sub Label3_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label_Show True
End Sub
Private Sub Label4_Click()
Call SendMail
End Sub
Private Sub Label4_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label_Show True
End Sub
Private Sub Label5_Click()
Call SendMail
End Sub
Private Sub Label5_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label_Show True
End Sub
Sub Label_Show(bShowFlag As Boolean)
If bShowFlag = True Then
Label5.FontUnderline = True
Label3.FontUnderline = True
Label4.FontUnderline = True
Else
Label5.FontUnderline = False
Label3.FontUnderline = False
Label4.FontUnderline = False
End If
End Sub
Sub SendMail()
Call ShellExecute(Me.hwnd, "Open", "MailTo:waenzht@sina.com", vbNullString, _
vbNullString, SW_SHOWNORMAL)
End Sub
Private Sub Picture2_Click()
Call SendMail
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -