📄 form3.frm
字号:
VERSION 5.00
Object = "{74848F95-A02A-4286-AF0C-A3C755E4A5B3}#1.0#0"; "ACTSKN43.OCX"
Begin VB.Form Form3
BorderStyle = 3 'Fixed Dialog
Caption = "关于"
ClientHeight = 3255
ClientLeft = 45
ClientTop = 330
ClientWidth = 5175
ControlBox = 0 'False
LinkTopic = "Form3"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3255
ScaleWidth = 5175
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.PictureBox Picture2
Appearance = 0 'Flat
BackColor = &H00FFFF80&
ForeColor = &H80000008&
Height = 1815
Left = 3720
ScaleHeight = 1785
ScaleWidth = 1305
TabIndex = 2
Top = 240
Width = 1335
Begin VB.Label Label5
BackStyle = 0 'Transparent
Caption = "di8088@sohu.com"
DragIcon = "Form3.frx":0000
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 255
Left = 0
MouseIcon = "Form3.frx":08CA
MousePointer = 99 'Custom
TabIndex = 7
Top = 1440
Width = 1455
End
Begin VB.Label Label4
BackStyle = 0 'Transparent
Caption = "Email:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FF0000&
Height = 255
Left = 240
TabIndex = 6
Top = 1200
Width = 735
End
Begin VB.Label Label3
BackStyle = 0 'Transparent
Caption = "作者:苏桂弟"
Height = 255
Left = 120
TabIndex = 5
Top = 840
Width = 1095
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "1.0.0版"
ForeColor = &H000000FF&
Height = 255
Left = 360
TabIndex = 4
Top = 480
Width = 615
End
Begin VB.Label Label1
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "《个人理财》"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 0
TabIndex = 3
Top = 120
Width = 1335
End
End
Begin VB.CommandButton Command1
Caption = "返回"
Height = 375
Left = 3840
TabIndex = 0
Top = 2400
Width = 1095
End
Begin ACTIVESKINLibCtl.Skin Skin1
Left = 0
OleObjectBlob = "Form3.frx":1194
Top = 0
End
Begin VB.PictureBox Picture1
Height = 3135
Left = 120
Picture = "Form3.frx":13C8
ScaleHeight = 3075
ScaleWidth = 3435
TabIndex = 1
Top = 0
Width = 3495
Begin VB.Label Label7
BackStyle = 0 'Transparent
Caption = "警告:著作权归作者所有,未经准许不得做商业用途。"
ForeColor = &H000000FF&
Height = 495
Left = 120
TabIndex = 9
Top = 2640
Width = 3255
End
Begin VB.Label Label6
BackStyle = 0 'Transparent
Caption = $"Form3.frx":269C
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFF00&
Height = 1935
Left = 360
TabIndex = 8
Top = 360
Width = 2415
End
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Declare Function ShellExecute Lib "Shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Sub Command2_Click()
Unload Me '关闭删除窗体
End Sub
Private Sub Command1_Click()
Unload Me '返回
End Sub
Private Sub Form_Load()
'-----------------------------------------------------------------------------
'为界面添加皮肤
Skin1.LoadSkin App.Path & "\chizh.skn"
Skin1.ApplySkin Me.hwnd
'-----------------------------------------------------------------------------
End Sub
Private Sub Label5_Click()
Dim mm As String
mm = "mailto:" + "di8088@sohu.com"
ShellExecute Me.hwnd, "open", mm, vbNullString, vbNullString, 0
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -