📄 frmpingabout.frm
字号:
VERSION 5.00
Begin VB.Form frmAbout
BorderStyle = 3 'Fixed Dialog
Caption = "About"
ClientHeight = 3210
ClientLeft = 45
ClientTop = 330
ClientWidth = 4680
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 214
ScaleMode = 3 'Pixel
ScaleWidth = 312
ShowInTaskbar = 0 'False
StartUpPosition = 3 'Windows Default
Begin VB.CommandButton cmdSendMail
Caption = "Drop me a mail!"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 3000
TabIndex = 4
Top = 2880
Width = 1335
End
Begin VB.CommandButton cmdOK
Caption = "OK"
Default = -1 'True
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 1680
TabIndex = 3
Top = 2760
Width = 855
End
Begin VB.PictureBox Picture1
Appearance = 0 'Flat
AutoSize = -1 'True
BackColor = &H80000005&
ForeColor = &H80000008&
Height = 510
Left = 120
Picture = "frmPingAbout.frx":0000
ScaleHeight = 480
ScaleWidth = 480
TabIndex = 1
Top = 120
Width = 510
End
Begin VB.Timer Timer
Interval = 100
Left = 120
Top = 2760
End
Begin VB.Label lblTitle
Alignment = 2 'Center
Caption = "Network Tools 0.4 beta"
BeginProperty Font
Name = "Tahoma"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 960
TabIndex = 2
Top = 120
Width = 3015
End
Begin VB.Label lblAbout
Alignment = 2 'Center
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 2175
Left = 480
TabIndex = 0
Top = 480
Width = 3735
End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Const CREDITS = "Coded by: Tiago Cogumbreiro" & vbNewLine & vbNewLine & vbNewLine & "Simplicity works!" & vbNewLine & vbNewLine & vbNewLine & "Email: cogumbreiro@oninet.pt" & vbNewLine & vbNewLine & "Thanks for using this program! And don't forget to leave me a comment on this!"
Private Sub cmdOK_Click()
Unload Me
End Sub
Private Sub cmdSendMail_Click()
Call Shell("explorer mailto:cogumbreiro@oninet.pt")
End Sub
Private Sub Timer_Timer()
Static Counter As Integer
With lblAbout
Counter = Counter + 1
.Caption = Left$(CREDITS, Counter)
End With
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -