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

📄 frmabout.frm

📁 这是一个电子书制作生成的工具源码,十分有价值,而且运用了加密解密的技术
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmAbout 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "eBook信息"
   ClientHeight    =   3780
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   3720
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3780
   ScaleWidth      =   3720
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  '所有者中心
   Begin VB.CommandButton cmdClose 
      Caption         =   "(&C)关闭"
      Height          =   350
      Left            =   1440
      TabIndex        =   3
      Top             =   3240
      Width           =   885
   End
   Begin VB.PictureBox picbase 
      Align           =   1  'Align Top
      BackColor       =   &H00FFFFFF&
      Height          =   2670
      Left            =   0
      ScaleHeight     =   2610
      ScaleWidth      =   3660
      TabIndex        =   0
      Top             =   0
      Width           =   3720
      Begin VB.Label compdate 
         BackStyle       =   0  'Transparent
         BeginProperty Font 
            Name            =   "Verdana"
            Size            =   8.25
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   240
         Left            =   1695
         TabIndex        =   6
         Top             =   1905
         Width           =   1920
      End
      Begin VB.Label Label2 
         BackStyle       =   0  'Transparent
         Caption         =   "Compiled on:"
         BeginProperty Font 
            Name            =   "Verdana"
            Size            =   8.25
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   240
         Left            =   405
         TabIndex        =   5
         Top             =   1905
         Width           =   1215
      End
      Begin VB.Label lblauhor 
         BackStyle       =   0  'Transparent
         BeginProperty Font 
            Name            =   "Verdana"
            Size            =   8.25
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00FF0000&
         Height          =   240
         Left            =   405
         TabIndex        =   2
         Top             =   1515
         Width           =   2940
      End
      Begin VB.Label lbltitle 
         BackStyle       =   0  'Transparent
         BeginProperty Font 
            Name            =   "Verdana"
            Size            =   8.25
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00FF0000&
         Height          =   240
         Left            =   405
         TabIndex        =   1
         Top             =   1110
         Width           =   2940
      End
      Begin VB.Line Line1 
         BorderStyle     =   3  'Dot
         X1              =   285
         X2              =   3495
         Y1              =   930
         Y2              =   930
      End
      Begin VB.Image Image2 
         Height          =   795
         Left            =   795
         Picture         =   "frmAbout.frx":0000
         Top             =   90
         Width           =   2310
      End
      Begin VB.Image Image1 
         Height          =   480
         Left            =   90
         Picture         =   "frmAbout.frx":0F76
         Top             =   120
         Width           =   480
      End
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "eBook用DM ebook Designer制作。"
      BeginProperty Font 
         Name            =   "Verdana"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00404040&
      Height          =   195
      Left            =   165
      TabIndex        =   4
      Top             =   2865
      Width           =   2940
   End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdclose_Click()
    Unload frmAbout
End Sub

Private Sub Form_Load()
On Error Resume Next
Dim StrB As String, StrV As Variant

    '这个代码开始原作者放在frmmain窗体的Form_load事件里,这件会造成这样一种情况,第一次点击关于显示关于窗体有显示,然后关掉再开就没有显示了,这代码必须放在关于窗体的Load事件
    StrB = StrConv(LoadResData(101, "CUSTOM"), vbUnicode) ' Losd in the ebooks info
    StrV = Split(StrB, ":")
    frmAbout.lbltitle.Caption = StrV(0) ' Set the title of the ebook/设置ebook的标题
    frmAbout.lblauhor.Caption = StrV(1) ' Set the auhors name of the ebook/设置ebook的作者名字
    frmAbout.compdate.Caption = StrV(3) ' Set the compile ebook date/设置编译ebook日期

End Sub

Private Sub Form_Unload(Cancel As Integer)
    Set frmAbout = Nothing
End Sub

⌨️ 快捷键说明

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