about.frm

来自「This application i made for handle simpl」· FRM 代码 · 共 201 行

FRM
201
字号
VERSION 5.00
Object = "{D18BBD1F-82BB-4385-BED3-E9D31A3E361E}#1.0#0"; "KewlButtonz.ocx"
Begin VB.Form frmAbout 
   BackColor       =   &H00FBF7F4&
   BorderStyle     =   1  'Fixed Single
   Caption         =   "About"
   ClientHeight    =   3465
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   5730
   BeginProperty Font 
      Name            =   "Verdana"
      Size            =   8.25
      Charset         =   0
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   Icon            =   "About.frx":0000
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   231
   ScaleMode       =   3  'Pixel
   ScaleWidth      =   382
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  'CenterScreen
   Begin KewlButtonz.KewlButtons btnOK 
      Height          =   390
      Left            =   4260
      TabIndex        =   6
      Top             =   2880
      Width           =   1290
      _ExtentX        =   2275
      _ExtentY        =   688
      BTYPE           =   3
      TX              =   "Ok"
      ENAB            =   -1  'True
      BeginProperty FONT {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "Verdana"
         Size            =   8.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      COLTYPE         =   1
      FOCUSR          =   -1  'True
      BCOL            =   15002603
      BCOLO           =   15002603
      FCOL            =   0
      FCOLO           =   0
      MCOL            =   12632256
      MPTR            =   1
      MICON           =   "About.frx":0EBA
      UMCOL           =   -1  'True
      SOFT            =   0   'False
      PICPOS          =   0
      NGREY           =   0   'False
      FX              =   0
      HAND            =   0   'False
      CHECK           =   0   'False
      VALUE           =   0   'False
   End
   Begin Irfan.IrfanHeader ihdAbout 
      Align           =   1  'Align Top
      Height          =   825
      Left            =   0
      Top             =   0
      Width           =   5730
      _ExtentX        =   10107
      _ExtentY        =   1455
      Text            =   "Finance"
   End
   Begin VB.Label lblAbout 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "Version"
      ForeColor       =   &H00704427&
      Height          =   1125
      Index           =   0
      Left            =   165
      TabIndex        =   5
      Top             =   1290
      UseMnemonic     =   0   'False
      Width           =   645
   End
   Begin VB.Label lblAbout 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "Copyright"
      ForeColor       =   &H00704427&
      Height          =   1500
      Index           =   1
      Left            =   165
      TabIndex        =   4
      Top             =   1515
      UseMnemonic     =   0   'False
      Width           =   840
   End
   Begin VB.Label lblAbout 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "for"
      ForeColor       =   &H00704427&
      Height          =   195
      Index           =   2
      Left            =   150
      TabIndex        =   3
      Top             =   2100
      UseMnemonic     =   0   'False
      Width           =   240
   End
   Begin VB.Label lblAbout 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "MEILIA PALACE "
      BeginProperty Font 
         Name            =   "Verdana"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00704427&
      Height          =   195
      Index           =   3
      Left            =   150
      TabIndex        =   2
      Top             =   2340
      UseMnemonic     =   0   'False
      Width           =   1545
   End
   Begin VB.Label lblAbout 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "DRIVING RANGE and SPORTS HOUSE"
      BeginProperty Font 
         Name            =   "Verdana"
         Size            =   8.25
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00704427&
      Height          =   195
      Index           =   4
      Left            =   150
      TabIndex        =   1
      Top             =   2580
      UseMnemonic     =   0   'False
      Width           =   3450
   End
   Begin VB.Label lblAbout 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "2nd"
      ForeColor       =   &H00704427&
      Height          =   195
      Index           =   5
      Left            =   1770
      TabIndex        =   0
      Top             =   1770
      UseMnemonic     =   0   'False
      Width           =   315
   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 btnOk_Click()

  Call Unload(Me)

End Sub

Private Sub Form_Load()

  ihdAbout.Text = LoadResString(0)

  lblAbout(0).Caption = "Version " & CStr(App.Major) & "." & CStr(App.Minor) & "." & CStr(App.Revision)
  lblAbout(1).Caption = LoadResString(1)
  lblAbout(5).Caption = "SqlOleDb "

End Sub


⌨️ 快捷键说明

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