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

📄 frmsplash.frm

📁 用于三次采油技术的经济评价
💻 FRM
字号:
VERSION 5.00
Object = "{0BA686C6-F7D3-101A-993E-0000C0EF6F5E}#1.0#0"; "THREED32.OCX"
Begin VB.Form frmSplash 
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   9825
   ClientLeft      =   255
   ClientTop       =   1410
   ClientWidth     =   15270
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   FillColor       =   &H00FFFFFF&
   ForeColor       =   &H00FFFFFF&
   Icon            =   "frmSplash.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   9825
   ScaleWidth      =   15270
   ShowInTaskbar   =   0   'False
   StartUpPosition =   1  '所有者中心
   WindowState     =   2  'Maximized
   Begin Threed.SSPanel SSPanel1 
      Height          =   5295
      Left            =   3720
      TabIndex        =   0
      Top             =   3600
      Width           =   8175
      _Version        =   65536
      _ExtentX        =   14420
      _ExtentY        =   9340
      _StockProps     =   15
      Caption         =   "SSPanel1"
      ForeColor       =   -2147483630
      BackColor       =   16761087
      BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
         Name            =   "宋体"
         Size            =   9
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      BevelInner      =   1
      Begin VB.PictureBox Picture1 
         Height          =   5055
         Left            =   120
         Picture         =   "frmSplash.frx":000C
         ScaleHeight     =   4995
         ScaleWidth      =   7875
         TabIndex        =   1
         Top             =   120
         Width           =   7935
         Begin Threed.SSPanel SSPanel2 
            Height          =   615
            Left            =   600
            TabIndex        =   4
            Top             =   4200
            Width           =   6495
            _Version        =   65536
            _ExtentX        =   11456
            _ExtentY        =   1085
            _StockProps     =   15
            Caption         =   "版权所有(2007) :中国海洋石油总公司研制"
            ForeColor       =   0
            BackColor       =   16777152
            BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851} 
               Name            =   "宋体"
               Size            =   12
               Charset         =   134
               Weight          =   400
               Underline       =   0   'False
               Italic          =   0   'False
               Strikethrough   =   0   'False
            EndProperty
            BorderWidth     =   2
            BevelOuter      =   0
            BevelInner      =   1
            FloodColor      =   0
         End
         Begin VB.Label Label2 
            Alignment       =   2  'Center
            BackStyle       =   0  'Transparent
            Caption         =   "版本: 1.0"
            BeginProperty Font 
               Name            =   "隶书"
               Size            =   36
               Charset         =   134
               Weight          =   700
               Underline       =   0   'False
               Italic          =   0   'False
               Strikethrough   =   0   'False
            EndProperty
            ForeColor       =   &H00C0C0FF&
            Height          =   855
            Left            =   1200
            TabIndex        =   3
            Top             =   1680
            Width           =   5055
         End
         Begin VB.Label Label1 
            BackStyle       =   0  'Transparent
            Caption         =   "经济评价系统--微机版"
            BeginProperty Font 
               Name            =   "隶书"
               Size            =   36
               Charset         =   134
               Weight          =   700
               Underline       =   0   'False
               Italic          =   0   'False
               Strikethrough   =   0   'False
            EndProperty
            ForeColor       =   &H0000FF00&
            Height          =   975
            Left            =   240
            TabIndex        =   2
            Top             =   600
            Width           =   7455
         End
      End
   End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)

Private Sub Form_Load()
'''实现屏幕延迟
    frmSplash.Show ''
    For i = 0 To 100 Step 4
      Sleep 20
      DoEvents
   Next i
filename$ = "Untitled.mdo"
formmain.Caption = "经济评价系统 [版本1.0]" & "--海上项目" & "--" & filename$
formmain.FontSize = 12
''Me.Picture1.Print "123"
Me.Hide
Unload Me
'Beep
formmain.Show
    
    
End Sub

⌨️ 快捷键说明

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