frmSplash.frm
上传用户:yinyu8822
上传日期:2021-04-28
资源大小:79k
文件大小:1k
开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmSplash 
  3.    BorderStyle     =   0  'None
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   2190
  6.    ClientLeft      =   0
  7.    ClientTop       =   0
  8.    ClientWidth     =   3480
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   2190
  11.    ScaleWidth      =   3480
  12.    ShowInTaskbar   =   0   'False
  13.    StartUpPosition =   3  '窗口缺省
  14.    Begin VB.Timer tmrEnd 
  15.       Enabled         =   0   'False
  16.       Interval        =   50
  17.       Left            =   900
  18.       Top             =   1140
  19.    End
  20.    Begin VB.Image imgSplash 
  21.       Height          =   675
  22.       Left            =   0
  23.       Top             =   0
  24.       Width           =   975
  25.    End
  26. End
  27. Attribute VB_Name = "frmSplash"
  28. Attribute VB_GlobalNameSpace = False
  29. Attribute VB_Creatable = False
  30. Attribute VB_PredeclaredId = True
  31. Attribute VB_Exposed = False
  32. 'Download by http://www.codefans.net
  33. Private Sub Form_Load()
  34. imgSplash = LoadPicture(App.Path & "gfxsplash.gif")
  35. Me.Width = imgSplash.Width
  36. Me.Height = imgSplash.Height
  37. Me.Left = Screen.Width / 2 - Me.Width / 2
  38. Me.Top = Screen.Height / 2 - Me.Height / 2
  39. Me.Show
  40. frmMain.Show
  41. Me.Hide
  42. End Sub
  43. Private Sub tmrEnd_Timer()
  44. End
  45. End Sub