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

📄 frmabout.frm

📁 此源码是一种RGB颜色的调配
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmAbout 
   Caption         =   "Acerca de Selector de Color"
   ClientHeight    =   3795
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4515
   ClipControls    =   0   'False
   Icon            =   "frmAbout.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Moveable        =   0   'False
   ScaleHeight     =   3795
   ScaleWidth      =   4515
   StartUpPosition =   3  'Windows Default
   Begin VB.Frame Frame1 
      Height          =   120
      Left            =   105
      TabIndex        =   3
      Top             =   2835
      Width           =   4320
   End
   Begin VB.CommandButton cmdAceptar 
      Caption         =   "Aceptar"
      Height          =   435
      Left            =   3255
      TabIndex        =   2
      Top             =   3255
      Width           =   1170
   End
   Begin VB.Image Image1 
      BorderStyle     =   1  'Fixed Single
      Height          =   645
      Left            =   3675
      Picture         =   "frmAbout.frx":030A
      Stretch         =   -1  'True
      Top             =   315
      Width           =   645
   End
   Begin VB.Label lblDescripcion 
      Alignment       =   2  'Center
      Appearance      =   0  'Flat
      BackColor       =   &H80000005&
      BackStyle       =   0  'Transparent
      BorderStyle     =   1  'Fixed Single
      BeginProperty Font 
         Name            =   "Arial"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H80000008&
      Height          =   1590
      Left            =   840
      TabIndex        =   5
      Top             =   1155
      Width           =   2640
      WordWrap        =   -1  'True
   End
   Begin VB.Label lblVersion 
      Alignment       =   2  'Center
      Appearance      =   0  'Flat
      BackColor       =   &H80000005&
      BackStyle       =   0  'Transparent
      BorderStyle     =   1  'Fixed Single
      BeginProperty Font 
         Name            =   "Arial"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H80000008&
      Height          =   330
      Left            =   840
      TabIndex        =   4
      Top             =   735
      Width           =   2640
      WordWrap        =   -1  'True
   End
   Begin VB.Label lblAdvertencia 
      BackStyle       =   0  'Transparent
      BorderStyle     =   1  'Fixed Single
      Height          =   645
      Left            =   105
      TabIndex        =   1
      Top             =   3045
      Width           =   2955
      WordWrap        =   -1  'True
   End
   Begin VB.Label lblAbout 
      Alignment       =   2  'Center
      Appearance      =   0  'Flat
      BackColor       =   &H80000005&
      BackStyle       =   0  'Transparent
      BorderStyle     =   1  'Fixed Single
      BeginProperty Font 
         Name            =   "Arial"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H80000008&
      Height          =   330
      Left            =   840
      TabIndex        =   0
      Top             =   315
      Width           =   2640
      WordWrap        =   -1  'True
   End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub cmdAceptar_Click()
    Unload Me
End Sub

Private Sub Form_Load()
    Dim msgAbout As String
    Dim msgVersion As String
    Dim msgDescripcion As String
    Dim msgAdvertencia As String
    
    msgAbout = "Selector de Color"
    msgVersion = "Versi髇 1.01"
    msgDescripcion = " Este peque駉 programa permite visualizar "
    msgDescripcion = msgDescripcion & "cualquier combinaci髇 de colores entre un fondo y el texto." & vbCrLf
    msgDescripcion = msgDescripcion & "Adem醩 se pueden copiar los valores de los colores "
    msgDescripcion = msgDescripcion & "elegidos al portapapeles para usarlos en otros proyectos."
    msgAdvertencia = "Este programa es freeware." & vbCrLf
    msgAdvertencia = msgAdvertencia & "Espero que les sea de utilidad y lo disfruten."
    
    lblAbout.Caption = msgAbout
    lblVersion.Caption = msgVersion
    lblDescripcion = msgDescripcion
    lblAdvertencia = msgAdvertencia
    
    Me.Top = (Screen.Height - Me.Height) / 2
    Me.Left = (Screen.Width - Me.Width) / 2

End Sub

⌨️ 快捷键说明

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