📄 frmabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "About MyApp"
ClientHeight = 1650
ClientLeft = 4680
ClientTop = 3270
ClientWidth = 5685
ClipControls = 0 'False
Icon = "frmAbout.frx":0000
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1138.859
ScaleMode = 0 'User
ScaleWidth = 5338.509
ShowInTaskbar = 0 'False
Begin VB.CommandButton CmdOK
Caption = "OK"
Height = 375
Left = 3960
TabIndex = 4
Top = 480
Width = 1335
End
Begin VB.PictureBox picIcon
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H80000005&
BorderStyle = 0 'None
ClipControls = 0 'False
ForeColor = &H80000008&
Height = 480
Left = 240
Picture = "frmAbout.frx":08CA
ScaleHeight = 337.12
ScaleMode = 0 'User
ScaleWidth = 337.12
TabIndex = 0
Top = 240
Width = 480
End
Begin VB.Label Label4
Caption = "http://www.wanweitech.com"
ForeColor = &H00FF0000&
Height = 255
Left = 1560
TabIndex = 5
Top = 1320
Width = 2415
End
Begin VB.Label Label3
Caption = "北京万维盈创科发展有限公司"
Height = 255
Left = 1080
TabIndex = 3
Top = 960
Width = 2655
End
Begin VB.Label Label2
Caption = "版权所有 2003 -"
Height = 255
Left = 1080
TabIndex = 2
Top = 600
Width = 2055
End
Begin VB.Label Label1
Caption = "TCP Assist 1.6"
Height = 255
Left = 1080
TabIndex = 1
Top = 240
Width = 2175
End
Begin VB.Line Line1
BorderColor = &H00808080&
BorderStyle = 6 'Inside Solid
Index = 1
X1 = 112.686
X2 = 5183.565
Y1 = 993.913
Y2 = 993.913
End
Begin VB.Line Line1
BorderColor = &H00FFFFFF&
BorderWidth = 2
Index = 0
X1 = 112.686
X2 = 5211.737
Y1 = 993.913
Y2 = 993.913
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
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 cmdOK_Click()
Unload Me
End Sub
Private Sub Form_Load()
Me.Caption = "About " & App.Title
Me.Left = frmMain.Left + frmMain.Width / 2 - Me.Width / 2
Me.Top = frmMain.Top + frmMain.Height / 2 - Me.Height / 2
' hou = Hour(Time)
' miu = Minute(Time)
' sec = Second(Time)
' yea = Year(Date)
' mon = Month(Date)
' da = Day(Date)
yea = Year(Date)
Label2.Caption = Label2.Caption & yea
End Sub
Private Sub Label4_Click()
ShellExecute hwnd, "Open", "http://www.eastcent.com", 0, 0, 0
End Sub
Private Sub Label4_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label4.MousePointer = 10
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -