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

其他行业

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX"
  3. Begin VB.Form Form1 
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   3195
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   4680
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   3195
  11.    ScaleWidth      =   4680
  12.    StartUpPosition =   3  '窗口缺省
  13.    Begin VB.CommandButton Command2 
  14.       Caption         =   "退出"
  15.       Height          =   375
  16.       Left            =   3120
  17.       TabIndex        =   6
  18.       Top             =   2040
  19.       Width           =   1095
  20.    End
  21.    Begin VB.CommandButton Command1 
  22.       Caption         =   "移动"
  23.       Height          =   375
  24.       Left            =   3120
  25.       TabIndex        =   5
  26.       Top             =   1320
  27.       Width           =   1095
  28.    End
  29.    Begin VB.CommandButton Command3 
  30.       Caption         =   "打开"
  31.       Height          =   375
  32.       Left            =   3120
  33.       TabIndex        =   4
  34.       Top             =   600
  35.       Width           =   1095
  36.    End
  37.    Begin VB.TextBox Text2 
  38.       Height          =   495
  39.       Left            =   120
  40.       TabIndex        =   1
  41.       Top             =   1800
  42.       Width           =   2295
  43.    End
  44.    Begin VB.TextBox Text1 
  45.       Height          =   495
  46.       Left            =   120
  47.       TabIndex        =   0
  48.       Top             =   600
  49.       Width           =   2295
  50.    End
  51.    Begin MSComDlg.CommonDialog CommonDialog1 
  52.       Left            =   3120
  53.       Top             =   0
  54.       _ExtentX        =   847
  55.       _ExtentY        =   847
  56.       _Version        =   393216
  57.    End
  58.    Begin VB.Label Label2 
  59.       Caption         =   "目标文件路径"
  60.       Height          =   255
  61.       Left            =   120
  62.       TabIndex        =   3
  63.       Top             =   1320
  64.       Width           =   1575
  65.    End
  66.    Begin VB.Label Label1 
  67.       Caption         =   "源文件路径"
  68.       Height          =   255
  69.       Left            =   120
  70.       TabIndex        =   2
  71.       Top             =   120
  72.       Width           =   1575
  73.    End
  74. End
  75. Attribute VB_Name = "Form1"
  76. Attribute VB_GlobalNameSpace = False
  77. Attribute VB_Creatable = False
  78. Attribute VB_PredeclaredId = True
  79. Attribute VB_Exposed = False
  80. Private Sub Command1_Click()
  81. CommonDialog1.Action = 2
  82. Text2.Text = CommonDialog1.FileName
  83. str1 = MsgBox("确实想移动文件到" + CommonDialog1.FileName + "吗")
  84. If str1 Then
  85. Name Text1.Text As Text2.Text
  86. End If
  87. End Sub
  88. Private Sub Command2_Click()
  89. End
  90. End Sub
  91. Private Sub Command3_Click()
  92. CommonDialog1.FileName = "*.txt"
  93. CommonDialog1.Filter = "*.txt"
  94. CommonDialog1.Action = 1
  95. Text1.Text = CommonDialog1.FileName
  96. Command1.Enabled = True
  97. End Sub
  98. Private Sub Form_Load()
  99. Command1.Enabled = False
  100. End Sub