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

📄 frmsplash.frm

📁 VB6.0编写的医院影像系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmSplash 
   AutoRedraw      =   -1  'True
   BackColor       =   &H00FFFF80&
   BorderStyle     =   0  'None
   ClientHeight    =   4575
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   7380
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "frmSplash.frx":0000
   ScaleHeight     =   4575
   ScaleWidth      =   7380
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Visible         =   0   'False
   Begin VB.Frame fraMainFrame 
      BackColor       =   &H00FFFFFF&
      BorderStyle     =   0  'None
      Height          =   4590
      Left            =   0
      TabIndex        =   0
      Top             =   -15
      Width           =   7380
      Begin VB.Timer timSplash 
         Interval        =   3000
         Left            =   3150
         Top             =   2835
      End
      Begin VB.Label lblVersion 
         Alignment       =   1  'Right Justify
         BackStyle       =   0  'Transparent
         Caption         =   "版本"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   11.25
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   315
         Left            =   4920
         TabIndex        =   9
         Top             =   1860
         Width           =   1695
      End
      Begin VB.Label Label1 
         BackStyle       =   0  'Transparent
         Caption         =   "忏"
         BeginProperty Font 
            Name            =   "Symbol"
            Size            =   12
            Charset         =   2
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   255
         Left            =   5520
         TabIndex        =   8
         Top             =   3000
         Width           =   915
      End
      Begin VB.Image Image1 
         Height          =   2205
         Left            =   315
         Picture         =   "frmSplash.frx":08CA
         Stretch         =   -1  'True
         Top             =   825
         Width           =   1710
      End
      Begin VB.Shape Shape1 
         BorderWidth     =   3
         Height          =   4545
         Left            =   15
         Top             =   30
         Width           =   7350
      End
      Begin VB.Label lblLicenseTo 
         Alignment       =   1  'Right Justify
         BackStyle       =   0  'Transparent
         Caption         =   "使用权属于: "
         Height          =   255
         Left            =   270
         TabIndex        =   1
         Tag             =   "1054"
         Top             =   300
         Width           =   6855
      End
      Begin VB.Label lblProductName 
         AutoSize        =   -1  'True
         BackStyle       =   0  'Transparent
         Caption         =   "超声影像报告系统"
         BeginProperty Font 
            Name            =   "隶书"
            Size            =   21.75
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   435
         Left            =   2880
         TabIndex        =   7
         Tag             =   "1053"
         Top             =   1260
         Width           =   3600
      End
      Begin VB.Label lblCompanyProduct 
         AutoSize        =   -1  'True
         BackStyle       =   0  'Transparent
         Caption         =   "恒合影像"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   12
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   240
         Left            =   2445
         TabIndex        =   6
         Tag             =   "1052"
         Top             =   825
         Width           =   1035
      End
      Begin VB.Label lblPlatform 
         Alignment       =   1  'Right Justify
         AutoSize        =   -1  'True
         BackStyle       =   0  'Transparent
         Caption         =   "For Windows95/98/2000"
         Height          =   180
         Left            =   5115
         TabIndex        =   5
         Tag             =   "1051"
         Top             =   2340
         Width           =   1890
      End
      Begin VB.Label lblWarning 
         BackStyle       =   0  'Transparent
         Caption         =   "警告: 本软件受国际版权法保护,未经授权而使用或复制本软件,将受到法律的严厉追究。"
         Height          =   435
         Left            =   480
         TabIndex        =   2
         Tag             =   "1049"
         Top             =   3780
         Width           =   3795
      End
      Begin VB.Label lblCompany 
         BackStyle       =   0  'Transparent
         Caption         =   "上海恒合信息系统有限公司"
         Height          =   255
         Left            =   4830
         TabIndex        =   4
         Tag             =   "1048"
         Top             =   3360
         Width           =   2175
      End
      Begin VB.Label lblCopyright 
         BackStyle       =   0  'Transparent
         Caption         =   "版权所有     1998 - 2000"
         Height          =   255
         Left            =   4830
         TabIndex        =   3
         Tag             =   "1047"
         Top             =   3060
         Width           =   2175
      End
   End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Form_Click()
    '单击窗体时,关闭窗体
    Unload Me
End Sub

Private Sub Form_Load()

    lblVersion.Caption = App.Major & "." & App.Minor & "." & App.Revision & " " & USV.VersionString
    lblLicenseTo.Caption = lblLicenseTo.Caption & IniUS.GetString("Print", "ReportTitle")
    Me.timSplash.Enabled = False
    
End Sub

Private Sub timSplash_Timer()
    Unload Me
End Sub

⌨️ 快捷键说明

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