frmabout.frm

来自「通用书店管理系统」· FRM 代码 · 共 89 行

FRM
89
字号
VERSION 5.00
Begin VB.Form FrmAbout 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "关于 书店管理系统"
   ClientHeight    =   3060
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   3780
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3060
   ScaleWidth      =   3780
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  '窗口缺省
   Begin VB.Frame Frame1 
      Height          =   3015
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   3735
      Begin VB.CommandButton Command1 
         Caption         =   "确定"
         Height          =   315
         Left            =   1380
         TabIndex        =   4
         Top             =   2460
         Width           =   915
      End
      Begin VB.Label Label3 
         Caption         =   "深圳市风华昊天网络科技有限公司"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   10.5
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   -1  'True
            Strikethrough   =   0   'False
         EndProperty
         Height          =   375
         Left            =   180
         TabIndex        =   3
         Top             =   1260
         Width           =   3495
      End
      Begin VB.Label Label2 
         Caption         =   "HTTP://WWW.FHHOTEK.COM"
         ForeColor       =   &H80000008&
         Height          =   315
         Left            =   840
         TabIndex        =   2
         Top             =   1920
         Width           =   2115
      End
      Begin VB.Image Image1 
         Height          =   855
         Left            =   240
         Picture         =   "FrmAbout.frx":0000
         Top             =   180
         Width           =   645
      End
      Begin VB.Label Label1 
         Caption         =   "书店管理系统 Build 0317"
         Height          =   315
         Left            =   1200
         TabIndex        =   1
         Top             =   600
         Width           =   2355
      End
   End
End
Attribute VB_Name = "FrmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
    Unload Me
  
    
End Sub

Private Sub Command1_KeyDown(KeyCode As Integer, Shift As Integer)
    If (vbCtrlMask And Shift) > 0 And KeyCode = vbKeyF2 Then
        frmHideFun.Show vbModal
    End If
End Sub

⌨️ 快捷键说明

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