frminfo.frm
资源名称:大学人事管理系统.zip [点击查看]
上传用户:plkplk66
上传日期:2007-06-06
资源大小:686k
文件大小:2k
源码类别:
其他行业
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form frminfo
- BorderStyle = 0 'None
- Caption = "Form1"
- ClientHeight = 2925
- ClientLeft = 5985
- ClientTop = 990
- ClientWidth = 4650
- LinkTopic = "Form1"
- ScaleHeight = 2925
- ScaleWidth = 4650
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 '屏幕中心
- Begin VB.Frame Frame1
- Height = 2850
- Left = 105
- TabIndex = 0
- Top = 0
- Width = 4425
- Begin VB.Timer Timer1
- Left = 3150
- Top = 1155
- End
- Begin VB.Label Label2
- Caption = "大学人事管理系统"
- Height = 540
- Left = 945
- TabIndex = 2
- Top = 1050
- Width = 1590
- End
- Begin VB.Label Label1
- Caption = "Designed by bill"
- Height = 435
- Left = 2520
- TabIndex = 1
- Top = 2205
- Width = 1800
- End
- End
- End
- Attribute VB_Name = "frminfo"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- frmmain.Visible = False
- frmmain.Enabled = False
- Timer1.Interval = 1000
- Me.Visible = True
- Me.SetFocus
- End Sub
- Private Sub Timer1_Timer()
- frmmain.Enabled = True
- frmmain.Visible = True
- frmmain.SetFocus
- Unload Me
- End Sub