Form1.frm
资源名称:大学人事管理系统.zip [点击查看]
上传用户:plkplk66
上传日期:2007-06-06
资源大小:686k
文件大小:1k
源码类别:
其他行业
开发平台:
Visual Basic
- VERSION 5.00
- Begin VB.Form Form1
- BorderStyle = 3 'Fixed Dialog
- Caption = "Form1"
- ClientHeight = 3225
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 5580
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- Moveable = 0 'False
- ScaleHeight = 3225
- ScaleWidth = 5580
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 '屏幕中心
- Begin VB.FileListBox File1
- Height = 2790
- Left = 2880
- TabIndex = 2
- Top = 240
- Width = 2655
- End
- Begin VB.DirListBox Dir1
- Height = 2190
- Left = 240
- TabIndex = 1
- Top = 720
- Width = 2535
- End
- Begin VB.DriveListBox Drive1
- Height = 300
- Left = 240
- TabIndex = 0
- Top = 240
- Width = 2535
- End
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Dir1_Change()
- File1.Path = Dir1.Path
- End Sub
- Private Sub Drive1_Change()
- Dir1.Path = Drive1.Drive
- End Sub
- Private Sub Form_Load()
- Drive1.Enabled = True
- Dir1.Enabled = True
- File1.Enabled = True
- File1.Pattern = "*.exe"
- Drive1.Drive = "c:"
- End Sub