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

📄 frm_welcome.frm

📁 中学教务管理系统是基于河南大学附属中学的教务管理条件所涉及
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frm_welcome 
   BorderStyle     =   0  'None
   Caption         =   "欢迎进入中学教务管理系统  V1.0"
   ClientHeight    =   5190
   ClientLeft      =   1320
   ClientTop       =   1020
   ClientWidth     =   7710
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Moveable        =   0   'False
   ScaleHeight     =   5190
   ScaleWidth      =   7710
   ShowInTaskbar   =   0   'False
   Begin VB.PictureBox Picture1 
      Height          =   5175
      Left            =   -120
      ScaleHeight     =   5115
      ScaleLeft       =   300
      ScaleMode       =   0  'User
      ScaleWidth      =   7635
      TabIndex        =   0
      Top             =   300
      Width           =   7695
   End
   Begin VB.Timer Timer1 
      Interval        =   3000
      Left            =   1920
      Top             =   1800
   End
End
Attribute VB_Name = "frm_welcome"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Me.Width = Picture1.Width
Me.Height = Picture1.Height
Picture1.Picture = LoadPicture(App.Path + "\pictures\welcome.bmp")
End Sub

Private Sub Timer1_Timer()
frm_main.Show
Unload Me
End Sub

⌨️ 快捷键说明

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