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

📄 about.frm

📁 一个irc客户端
💻 FRM
字号:
VERSION 4.00
Begin VB.Form about 
   Caption         =   "About IRCPre2"
   ClientHeight    =   4496
   ClientLeft      =   1600
   ClientTop       =   1440
   ClientWidth     =   5648
   Height          =   4880
   Left            =   1536
   LinkTopic       =   "Form2"
   ScaleHeight     =   281
   ScaleMode       =   3  'Pixel
   ScaleWidth      =   353
   Top             =   1120
   Width           =   5776
   Begin VB.CommandButton OK 
      Caption         =   "&OK"
      Height          =   400
      Left            =   4544
      TabIndex        =   8
      Top             =   4032
      Width           =   976
   End
   Begin VB.Frame Frame1 
      Height          =   2896
      Left            =   128
      TabIndex        =   2
      Top             =   1024
      Width           =   5392
      Begin VB.Label Label7 
         AutoSize        =   -1  'True
         Caption         =   "Dasmius can be reached by email at danny@telecomputer.com"
         Height          =   208
         Left            =   128
         TabIndex        =   7
         Top             =   2496
         Width           =   4768
      End
      Begin VB.Label Label6 
         Caption         =   "http://www.telecomputer.com/ircpre"
         ForeColor       =   &H00FF0000&
         Height          =   208
         Left            =   256
         TabIndex        =   6
         Top             =   2112
         Width           =   2768
      End
      Begin VB.Label Label5 
         AutoSize        =   -1  'True
         Caption         =   "The official IRCPre home page is:"
         Height          =   208
         Left            =   128
         TabIndex        =   5
         Top             =   1856
         Width           =   2528
      End
      Begin VB.Label Label4 
         Caption         =   $"about.frx":0000
         ForeColor       =   &H00000000&
         Height          =   848
         Left            =   128
         TabIndex        =   4
         Top             =   832
         Width           =   5136
      End
      Begin VB.Label Label3 
         Caption         =   "IRCPre2 was written by Dasmius. He can be found on EFNet IRC, in the channel #visualbasic."
         Height          =   464
         Left            =   128
         TabIndex        =   3
         Top             =   256
         Width           =   5136
      End
   End
   Begin VB.Label Label2 
      AutoSize        =   -1  'True
      Caption         =   "IRCPre2"
      BeginProperty Font 
         name            =   "Times New Roman"
         charset         =   0
         weight          =   400
         size            =   46.88
         underline       =   0   'False
         italic          =   0   'False
         strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF0000&
      Height          =   1024
      Left            =   128
      TabIndex        =   1
      Top             =   0
      Width           =   3152
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      Caption         =   "IRCPre2 Copyright (C) 1996 by Dann M. Daggett II"
      Height          =   208
      Left            =   576
      TabIndex        =   0
      Top             =   4112
      Width           =   3808
   End
End
Attribute VB_Name = "about"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Option Explicit

Private Sub Form_Load()

  ' Center myself in the middle of the screen
  Me.Left = (Screen.Width \ 2) - (Me.Width \ 2)
  Me.Top = (Screen.Height \ 2) - (Me.Height \ 2)

End Sub


Private Sub OK_Click()

  ' Close About box
  Unload Me
  
End Sub


⌨️ 快捷键说明

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