⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 frmabout.frm

📁 一个测试网络链接速度的工具源码。测试你的网络连接速率。
💻 FRM
字号:
VERSION 5.00
Begin VB.Form FrmAbout 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "关于蜗牛工作室"
   ClientHeight    =   3090
   ClientLeft      =   45
   ClientTop       =   435
   ClientWidth     =   4575
   Icon            =   "FrmAbout.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3090
   ScaleWidth      =   4575
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton cmdUnload 
      Caption         =   "关闭(&Q)"
      Height          =   400
      Left            =   3240
      TabIndex        =   3
      Top             =   2640
      Width           =   1215
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "感谢:240891540 的测试"
      ForeColor       =   &H00404040&
      Height          =   180
      Left            =   360
      TabIndex        =   5
      Top             =   2760
      Width           =   1980
   End
   Begin VB.Image imLogo 
      Height          =   720
      Left            =   120
      Picture         =   "FrmAbout.frx":1CCA
      Top             =   120
      Width           =   720
   End
   Begin VB.Label LMore 
      BackStyle       =   0  'Transparent
      Caption         =   "更多测试"
      ForeColor       =   &H00FF0000&
      Height          =   180
      Left            =   600
      MouseIcon       =   "FrmAbout.frx":3994
      MousePointer    =   99  'Custom
      TabIndex        =   4
      Top             =   2280
      Width           =   720
   End
   Begin VB.Label labout 
      Alignment       =   2  'Center
      BackStyle       =   0  'Transparent
      Caption         =   "蜗牛工作室制作"
      ForeColor       =   &H00404040&
      Height          =   180
      Index           =   2
      Left            =   2880
      TabIndex        =   2
      Top             =   2280
      Width           =   1275
   End
   Begin VB.Label labout 
      Alignment       =   2  'Center
      BackStyle       =   0  'Transparent
      ForeColor       =   &H00404040&
      Height          =   1455
      Index           =   1
      Left            =   480
      TabIndex        =   1
      Top             =   600
      Width           =   3615
   End
   Begin VB.Label labout 
      Alignment       =   2  'Center
      BackStyle       =   0  'Transparent
      BeginProperty Font 
         Name            =   "华文行楷"
         Size            =   18
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF0000&
      Height          =   375
      Index           =   0
      Left            =   720
      TabIndex        =   0
      Top             =   120
      Width           =   3015
   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 cmdUnload_Click()
Unload Me
End Sub

Private Sub Form_Load()
Me.Icon = LoadPicture("")
Set Me.Icon = Nothing
labout(0).Caption = "关于网络测速器"
labout(1).Caption = vbCrLf & "本程序利用互联网资源制作" & vbCrLf & vbCrLf
labout(1).Caption = labout(1).Caption & "程序可能由于互联网资源的更改而无法使用" & vbCrLf & vbCrLf
labout(1).Caption = labout(1).Caption & "2.0版本 修正已知的BUG,并增加了测试记录" & vbCrLf & vbCrLf
labout(1).Caption = labout(1).Caption & "程序无法使用后请单击更多测试按钮"
End Sub

Private Sub LMore_Click()
ShellExecute Me.hwnd, "open", "http://www.baidu.com/s?wd=%CD%F8%C2%E7+%B2%E2%CB%D9&cl=3", "", "", 0
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -