VERSION 5.00
Begin VB.Form Dialog 
   BorderStyle     =   3  'Œ޲۸
   Caption         =   "ިڸ؎Q"
   ClientHeight    =   2640
   ClientLeft      =   2760
   ClientTop       =   3750
   ClientWidth     =   4365
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   2640
   ScaleWidth      =   4365
   ShowInTaskbar   =   0   'False
   Begin VB.DirListBox Dir1 
      Height          =   2190
      Left            =   360
      TabIndex        =   2
      Top             =   120
      Width           =   2295
   End
   Begin VB.CommandButton CancelButton 
      Caption         =   "ݾ"
      Height          =   375
      Left            =   2880
      TabIndex        =   1
      Top             =   600
      Width           =   1215
   End
   Begin VB.CommandButton OKButton 
      Caption         =   "OK"
      Height          =   375
      Left            =   2880
      TabIndex        =   0
      Top             =   120
      Width           =   1215
   End
End
Attribute VB_Name = "Dialog"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Option Explicit

Private Sub CancelButton_Click()
    Unload Dialog
End Sub

Private Sub OKButton_Click()
    Throw.ExecDir.Text = Dialog.Dir1.path
    Unload Dialog
End Sub
