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

其他行业

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form Form1 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   3225
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   5580
  9.    LinkTopic       =   "Form1"
  10.    MaxButton       =   0   'False
  11.    MinButton       =   0   'False
  12.    Moveable        =   0   'False
  13.    ScaleHeight     =   3225
  14.    ScaleWidth      =   5580
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   2  '屏幕中心
  17.    Begin VB.FileListBox File1 
  18.       Height          =   2790
  19.       Left            =   2880
  20.       TabIndex        =   2
  21.       Top             =   240
  22.       Width           =   2655
  23.    End
  24.    Begin VB.DirListBox Dir1 
  25.       Height          =   2190
  26.       Left            =   240
  27.       TabIndex        =   1
  28.       Top             =   720
  29.       Width           =   2535
  30.    End
  31.    Begin VB.DriveListBox Drive1 
  32.       Height          =   300
  33.       Left            =   240
  34.       TabIndex        =   0
  35.       Top             =   240
  36.       Width           =   2535
  37.    End
  38. End
  39. Attribute VB_Name = "Form1"
  40. Attribute VB_GlobalNameSpace = False
  41. Attribute VB_Creatable = False
  42. Attribute VB_PredeclaredId = True
  43. Attribute VB_Exposed = False
  44. Private Sub Dir1_Change()
  45. File1.Path = Dir1.Path
  46. End Sub
  47. Private Sub Drive1_Change()
  48. Dir1.Path = Drive1.Drive
  49. End Sub
  50. Private Sub Form_Load()
  51. Drive1.Enabled = True
  52. Dir1.Enabled = True
  53. File1.Enabled = True
  54. File1.Pattern = "*.exe"
  55. Drive1.Drive = "c:"
  56. End Sub