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

📄 frmsplash.frm

📁 我编的学分管理程序,应用程序 原代码都有!VB入门的好东西
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmSplash 
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   3720
   ClientLeft      =   255
   ClientTop       =   1410
   ClientWidth     =   7260
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   Icon            =   "frmSplash.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3720
   ScaleWidth      =   7260
   ShowInTaskbar   =   0   'False
   Begin VB.Frame Frame1 
      Height          =   3645
      Left            =   75
      TabIndex        =   0
      Top             =   0
      Width           =   7080
      Begin VB.Timer Timer1 
         Enabled         =   0   'False
         Interval        =   2000
         Left            =   165
         Top             =   240
      End
      Begin VB.Image imgLogo 
         Height          =   825
         Left            =   450
         Picture         =   "frmSplash.frx":000C
         Stretch         =   -1  'True
         Top             =   990
         Width           =   1815
      End
      Begin VB.Label lblCopyright 
         Caption         =   "版权所有"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   9
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   255
         Left            =   4935
         TabIndex        =   4
         Top             =   2850
         Width           =   2415
      End
      Begin VB.Label lblCompany 
         Caption         =   "思远电子公司"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   9
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   255
         Left            =   4905
         TabIndex        =   3
         Top             =   3105
         Width           =   2415
      End
      Begin VB.Label lblWarning 
         Caption         =   "警告:本软件受国际软件公约保护"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   9
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   300
         Left            =   210
         TabIndex        =   2
         Top             =   3180
         Width           =   3450
      End
      Begin VB.Label lblVersion 
         Alignment       =   1  'Right Justify
         AutoSize        =   -1  'True
         Caption         =   "版本 2000"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   12
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   240
         Left            =   5445
         TabIndex        =   5
         Top             =   2430
         Width           =   1365
      End
      Begin VB.Label lblPlatform 
         Alignment       =   1  'Right Justify
         AutoSize        =   -1  'True
         Caption         =   "基于WINDOWS 95 以上平台"
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   15.75
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   315
         Left            =   2865
         TabIndex        =   6
         Top             =   2040
         Width           =   3960
      End
      Begin VB.Label lblProductName 
         AutoSize        =   -1  'True
         Caption         =   "学分管理"
         BeginProperty Font 
            Name            =   "黑体"
            Size            =   32.25
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   645
         Left            =   2820
         TabIndex        =   8
         Top             =   1200
         Width           =   2655
      End
      Begin VB.Label lblLicenseTo 
         Alignment       =   1  'Right Justify
         Caption         =   "使用权属于:鞍山钢铁学院"
         Height          =   255
         Left            =   120
         TabIndex        =   1
         Top             =   240
         Width           =   6855
      End
      Begin VB.Label lblCompanyProduct 
         AutoSize        =   -1  'True
         Caption         =   "思远教育软件"
         BeginProperty Font 
            Name            =   "楷体_GB2312"
            Size            =   18
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   360
         Left            =   2910
         TabIndex        =   7
         Top             =   645
         Width           =   2250
      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_KeyPress(KeyAscii As Integer)
    Unload Me
End Sub

Private Sub Form_Load()
   SetWindowPos Me.hwnd, -1, Me.Left / 15, Me.Top / 15, Me.Width / -15, Me.Height / 15, SWP_NOSIZE Or SWP_SHOWWINDOW
    lblVersion.Caption = "版本 :1.00"
    'lblProductNaprinter.caption = App.title
    Timer1.Enabled = True

End Sub

Private Sub Form_Unload(Cancel As Integer)
coverFrm.Show

End Sub



Private Sub form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
 Unload Me
End Sub

Private Sub Timer1_Timer()

Timer1.Enabled = False
 Unload Me
End Sub

⌨️ 快捷键说明

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