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

📄 frmsplash.frm

📁 一个小型的社区医疗管理软件。只有100多K。功能还可以。英文界面
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmSplash 
   BorderStyle     =   0  'None
   Caption         =   "Medi-Assist"
   ClientHeight    =   1995
   ClientLeft      =   210
   ClientTop       =   1365
   ClientWidth     =   6750
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   Icon            =   "frmSplash.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   1995
   ScaleWidth      =   6750
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  'CenterScreen
   Begin VB.Image imgSplash 
      Height          =   1995
      Left            =   0
      Picture         =   "frmSplash.frx":000C
      Top             =   0
      Width           =   6735
   End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'******************************************************
'Medi-Assist - Program Dossier
'frmAdd
'Puraj Pravinchandra Patel
'Carlisle School - Martinsville, Virginia USA
'Computer Used: Pentium II 233, 144MB SDRAM, Windows 98
'Microsoft Visual Basic 6.0
'23 March 2000
'This form is responsible for displaying the Medi-
'Assist logo at startup.
'******************************************************

Option Explicit

Private Sub Form_Load()

    'hide all forms
    frmAbout.Hide
    frmAdd.Hide
    frmSearch.Hide
    mdiMediAssist.Hide
    
End Sub

Private Sub imgSplash_Click()
    
    'show multiple document interface
    mdiMediAssist.Show
    
    'terminate splash form
    Unload frmSplash
    
End Sub

⌨️ 快捷键说明

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