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

📄 frmabout.frm

📁 我同学艾大桥的记事本程序
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmabout 
   AutoRedraw      =   -1  'True
   BackColor       =   &H00C0C0C0&
   BorderStyle     =   4  'Fixed ToolWindow
   Caption         =   "关于记事本"
   ClientHeight    =   3795
   ClientLeft      =   45
   ClientTop       =   285
   ClientWidth     =   6045
   Icon            =   "frmabout.frx":0000
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3795
   ScaleWidth      =   6045
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.CommandButton cmdok 
      Caption         =   "确定"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   12
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   375
      Left            =   4680
      TabIndex        =   4
      Top             =   3360
      Width           =   1215
   End
   Begin VB.PictureBox picsm 
      Align           =   1  'Align Top
      AutoSize        =   -1  'True
      Height          =   1005
      Left            =   0
      Picture         =   "frmabout.frx":0442
      ScaleHeight     =   945
      ScaleWidth      =   5985
      TabIndex        =   1
      Top             =   0
      Width           =   6045
   End
   Begin VB.Image imgtb 
      Height          =   480
      Left            =   600
      Picture         =   "frmabout.frx":1AD7
      Top             =   1200
      Width           =   480
   End
   Begin VB.Line linfg 
      BorderColor     =   &H00808080&
      X1              =   1560
      X2              =   5880
      Y1              =   3240
      Y2              =   3240
   End
   Begin VB.Label labsm3 
      BackColor       =   &H00C0C0C0&
      Caption         =   "版权所有 (C) (2004-2008) AI'S Corp."
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   12
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   495
      Left            =   1560
      TabIndex        =   3
      Top             =   2400
      Width           =   4335
   End
   Begin VB.Label labsm2 
      AutoSize        =   -1  'True
      BackColor       =   &H00C0C0C0&
      Caption         =   "版本 1.0"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   12
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   240
      Left            =   1560
      TabIndex        =   2
      Top             =   1800
      Width           =   960
   End
   Begin VB.Label labsm 
      AutoSize        =   -1  'True
      BackColor       =   &H00C0C0C0&
      Caption         =   "AI'S (C)  记事本"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   12
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   480
      Left            =   1560
      TabIndex        =   0
      Top             =   1200
      Width           =   4320
   End
End
Attribute VB_Name = "frmabout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'关于记事本
'作者:艾大桥
'2004年11月5日
Private Sub cmdok_Click()               '卸载窗体

 Unload Me
 frmnote.Enabled = True                 '使主程序窗体可用
 frmnote.SetFocus
End Sub

Private Sub Form_Load()               '使主程序窗体不可用

frmnote.Enabled = False

End Sub

⌨️ 快捷键说明

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