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

📄 frmabout.frm

📁 VB做的报表设计源程序,非常不错,可以自定义模版
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmAbout 
   BackColor       =   &H8000000B&
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "About RG Report Designer"
   ClientHeight    =   3045
   ClientLeft      =   2340
   ClientTop       =   1935
   ClientWidth     =   6330
   ClipControls    =   0   'False
   Icon            =   "frmAbout.frx":0000
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2101.713
   ScaleMode       =   0  'User
   ScaleWidth      =   5944.197
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  'CenterOwner
   Begin VB.CommandButton cmdOK 
      Cancel          =   -1  'True
      Caption         =   "OK"
      Default         =   -1  'True
      Height          =   345
      Left            =   2580
      TabIndex        =   0
      Top             =   2580
      Width           =   1260
   End
   Begin VB.Image Image1 
      Height          =   1290
      Left            =   120
      Picture         =   "frmAbout.frx":000C
      Stretch         =   -1  'True
      Top             =   120
      Width           =   3195
   End
   Begin VB.Line Line1 
      BorderColor     =   &H00808080&
      BorderStyle     =   6  'Inside Solid
      Index           =   1
      X1              =   84.515
      X2              =   5803.339
      Y1              =   1232.039
      Y2              =   1232.039
   End
   Begin VB.Label lblDescription 
      BackColor       =   &H8000000B&
      Caption         =   $"frmAbout.frx":25BF
      ForeColor       =   &H00000000&
      Height          =   810
      Left            =   3480
      TabIndex        =   1
      Top             =   420
      Width           =   2625
   End
   Begin VB.Line Line1 
      BorderColor     =   &H00FFFFFF&
      BorderWidth     =   2
      Index           =   0
      X1              =   98.6
      X2              =   5746.996
      Y1              =   1242.392
      Y2              =   1242.392
   End
   Begin VB.Label lblVersion 
      BackColor       =   &H8000000B&
      Caption         =   "Version 0.6"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   225
      Left            =   180
      TabIndex        =   3
      Top             =   1440
      Width           =   3105
   End
   Begin VB.Label lblDisclaimer 
      BackColor       =   &H8000000B&
      Caption         =   $"frmAbout.frx":264A
      ForeColor       =   &H00000000&
      Height          =   585
      Left            =   120
      TabIndex        =   2
      Top             =   1920
      Width           =   6090
   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 cmdOK_Click()
  Unload Me
End Sub

Private Sub Form_Load()
    Me.Caption = "About " & App.Title
    lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
End Sub

⌨️ 快捷键说明

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