frminfo.frm
上传用户:plkplk66
上传日期:2007-06-06
资源大小:686k
文件大小:2k
源码类别:

其他行业

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frminfo 
  3.    BorderStyle     =   0  'None
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   2925
  6.    ClientLeft      =   5985
  7.    ClientTop       =   990
  8.    ClientWidth     =   4650
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   2925
  11.    ScaleWidth      =   4650
  12.    ShowInTaskbar   =   0   'False
  13.    StartUpPosition =   2  '屏幕中心
  14.    Begin VB.Frame Frame1 
  15.       Height          =   2850
  16.       Left            =   105
  17.       TabIndex        =   0
  18.       Top             =   0
  19.       Width           =   4425
  20.       Begin VB.Timer Timer1 
  21.          Left            =   3150
  22.          Top             =   1155
  23.       End
  24.       Begin VB.Label Label2 
  25.          Caption         =   "大学人事管理系统"
  26.          Height          =   540
  27.          Left            =   945
  28.          TabIndex        =   2
  29.          Top             =   1050
  30.          Width           =   1590
  31.       End
  32.       Begin VB.Label Label1 
  33.          Caption         =   "Designed by bill"
  34.          Height          =   435
  35.          Left            =   2520
  36.          TabIndex        =   1
  37.          Top             =   2205
  38.          Width           =   1800
  39.       End
  40.    End
  41. End
  42. Attribute VB_Name = "frminfo"
  43. Attribute VB_GlobalNameSpace = False
  44. Attribute VB_Creatable = False
  45. Attribute VB_PredeclaredId = True
  46. Attribute VB_Exposed = False
  47. Option Explicit
  48. Private Sub Form_Load()
  49. frmmain.Visible = False
  50. frmmain.Enabled = False
  51. Timer1.Interval = 1000
  52. Me.Visible = True
  53. Me.SetFocus
  54. End Sub
  55. Private Sub Timer1_Timer()
  56. frmmain.Enabled = True
  57. frmmain.Visible = True
  58. frmmain.SetFocus
  59. Unload Me
  60. End Sub